[#mrdocs-compareSymbolNames] = xref:mrdocs.adoc[mrdocs]::compareSymbolNames :relfileprefix: ../ :mrdocs: Return the result of comparing s0 to s1. == Synopsis Declared in `<mrdocs/Metadata/Symbol/SymbolID.hpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- std::strong_ordering compareSymbolNames( std::string_view symbolName0, std::string_view symbolName1) noexcept; ---- == Description This function returns true if the string s0 is less than the string s1. The comparison is first made without regard to case, unless the strings compare equal and then they are compared with lowercase letters coming before uppercase letters. == Return Value The result of the comparison. == Parameters [cols="1,4"] |=== | Name| Description | *symbolName0* | The first symbol name to compare. | *symbolName1* | The second symbol name to compare. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#