@return Case sensitive ordering.
| 946 | struct LessThan { |
| 947 | /// @return Case sensitive ordering. |
| 948 | bool |
| 949 | operator()(self_type const &lhs, self_type const &rhs) const noexcept { |
| 950 | return -1 == strcmp(lhs, rhs); |
| 951 | } |
| 952 | }; |
| 953 | |
| 954 | /// Ordering functor, case ignoring lexicographic comparison. |