MCPcopy Create free account
hub / github.com/ashvardanian/StringZilla / operator==

Method operator==

include/stringzilla/stringzilla.hpp:3112–3112  ·  view source on GitHub ↗

@brief Checks if the string is equal to the other string. */

Source from the content-addressed store, hash-verified

3110
3111 /** @brief Checks if the string is equal to the other string. */
3112 bool operator==(basic_string const &other) const noexcept { return view() == other.view(); }
3113 bool operator==(string_view other) const noexcept { return view() == other; }
3114 bool operator==(const_pointer other) const noexcept { return view() == string_view(other); }
3115

Callers

nothing calls this directly

Calls 1

viewMethod · 0.45

Tested by

no test coverage detected