MCPcopy Create free account
hub / github.com/carbonengine/trinity / IEquals

Function IEquals

shadercompiler/InlineString.h:93–98  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91}
92
93inline bool IEquals( const InlineString& a, const InlineString& b )
94{
95 return std::equal( a.start, a.end, b.start, b.end, []( char a, char b ) {
96 return tolower( a ) == tolower( b );
97 } );
98}
99
100inline bool IEquals( const InlineString& a, const char* b )
101{

Calls

no outgoing calls

Tested by

no test coverage detected