[#boost-urls-grammar-ci_less] = xref:boost.adoc[boost]::xref:boost/urls.adoc[urls]::xref:boost/urls/grammar.adoc[grammar]::ci_less :relfileprefix: ../../../ :mrdocs: A case‐insensitive less predicate for strings == Synopsis Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/grammar/ci_string.hpp#L353[boost/url/grammar/ci_string.hpp]>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- using ci_less = /* implementation-defined */::xref:boost/urls/grammar/implementation_defined/ci_less.adoc[ci_less]; ---- == Description The comparison algorithm implements a case‐insensitive total order on the set of all ASCII strings; however, it is not a lexicographical comparison. This is a suitable predicate for ordered containers. The function is defined only for strings containing low‐ASCII characters. === Example [,cpp] ---- boost::container::map< std::string, std::string, ci_less > m1; std::map< std::string, std::string, ci_less > m2; // (since C++14) ---- == See Also xref:boost/urls/grammar/ci_equal.adoc[ci_equal], xref:boost/urls/grammar/ci_hash.adoc[ci_hash]. [.small]#Created with https://www.mrdocs.com[MrDocs]#