MCPcopy Create free account
hub / github.com/arun11299/cpp-jwt / find_first_not_of

Method find_first_not_of

include/jwt/string_view.hpp:313–316  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

311 size_type find_first_not_of(CharT ch, size_type pos) const noexcept;
312
313 size_type find_first_not_of(basic_string_view str, size_type pos = 0) const noexcept
314 {
315 return find_first_not_of(str.data(), pos, str.length());
316 }
317
318 size_type find_first_not_of(const CharT* str, size_type pos = 0) const noexcept
319 {

Callers 1

find_operFunction · 0.80

Calls 2

dataMethod · 0.80
lengthMethod · 0.80

Tested by 1

find_operFunction · 0.64