search for: hasanyof

Displaying 1 result from an estimated 1 matches for "hasanyof".

Did you mean: hasanov
2018 Feb 23
1
StringRef hasAnyOf/hasAllOf
Hi, a downstream consumer of llvm I'm currently working provides the following two functions: static bool StringHasAllOf(const llvm::StringRef &s, const char *which); static bool StringHasAnyOf(const llvm::StringRef &s, std::initializer_list<const char *> which, size_t &where); https://github.com/apple/swift-lldb/blob/stable/source/Target/SwiftLanguageRuntime.cpp#L691 https://github.com/apple/swift-lldb/blob/stable/source/Target/SwiftLanguageRuntime.cpp#L699 I'm under...