MCPcopy Create free account
hub / github.com/Neargye/magic_enum / find

Method find

test/test_aliases.cpp:76–76  ·  view source on GitHub ↗

required

Source from the content-addressed store, hash-verified

74 constexpr auto begin() const { return str.begin(); } // required
75 constexpr auto end() const { return str.end(); } // required
76 constexpr std::size_t find(char c) const { return str.find(c); } // required
77 constexpr MyStringView substr(std::size_t p, std::size_t n) { return str.substr(p, n); } // required
78 constexpr void remove_prefix(std::size_t n) { str.remove_prefix(n); } // required
79 constexpr void remove_suffix(std::size_t n) { str.remove_suffix(n); } // required

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected