MCPcopy Create free account
hub / github.com/NativeScript/android / operator==

Method operator==

test-app/runtime/src/main/cpp/include/v8-maybe.h:73–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71 }
72
73 V8_INLINE bool operator==(const Maybe& other) const {
74 return (IsJust() == other.IsJust()) &&
75 (!IsJust() || FromJust() == other.FromJust());
76 }
77
78 V8_INLINE bool operator!=(const Maybe& other) const {
79 return !operator==(other);

Callers

nothing calls this directly

Calls 2

FromJustMethod · 0.80
IsJustMethod · 0.45

Tested by

no test coverage detected