MCPcopy Create free account
hub / github.com/Clarionos/clarion / rfind

Method rfind

libraries/fc/src/string.cpp:61–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

59 size_t string::find(const fc::string& str, size_t pos /* = 0 */) const { return my->find(str, pos); }
60 size_t string::find(const char* s, size_t pos /* = 0 */) const { return my->find(s,pos); }
61 size_t string::rfind(char c, size_t p)const { return my->rfind(c,p); }
62 size_t string::rfind(const char* c, size_t p)const { return my->rfind(c,p); }
63 size_t string::rfind(const fc::string& c, size_t p)const { return my->rfind(c,p); }
64 size_t string::find_first_of(const fc::string& str, size_t pos /* = 0 */) const { return my->find_first_of(str, pos); }

Callers 2

mime_typeFunction · 0.80
public_keyMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected