MCPcopy Create free account
hub / github.com/cel-expr/cel-cpp / Equals

Method Equals

common/internal/byte_string.cc:245–249  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

243}
244
245bool ByteString::Equals(absl::string_view rhs) const {
246 return Visit(absl::Overload(
247 [&rhs](absl::string_view lhs) -> bool { return lhs == rhs; },
248 [&rhs](const absl::Cord& lhs) -> bool { return lhs == rhs; }));
249}
250
251bool ByteString::Equals(const absl::Cord& rhs) const {
252 return Visit(absl::Overload(

Callers

nothing calls this directly

Calls 1

VisitFunction · 0.70

Tested by

no test coverage detected