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

Method Equals

common/values/bytes_value.cc:140–144  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

138}
139
140bool BytesValue::Equals(absl::string_view bytes) const {
141 return NativeValue([bytes](const auto& alternative) -> bool {
142 return alternative == bytes;
143 });
144}
145
146bool BytesValue::Equals(const absl::Cord& bytes) const {
147 return NativeValue([&bytes](const auto& alternative) -> bool {

Callers 8

BM_PolicySymbolicFunction · 0.45
operator==Function · 0.45
CelValueEqualsFunction · 0.45
operator==Function · 0.45
operator!=Function · 0.45
ValueEqualsFunction · 0.45
InequalFunction · 0.45
EqualFunction · 0.45

Calls 2

NativeValueFunction · 0.70
NativeValueMethod · 0.45

Tested by 1

BM_PolicySymbolicFunction · 0.36