ot::AreStringsInOrder() function
This `constexpr` function checks whether two given C strings are in order (alphabetical order). This is intended for use from `static_assert`, e.g., checking if a lookup table entries are sorted. It is not recommended to use this function in other situations as it uses recursion so that it can be `constexpr`.
Syntax
inline constexpr bool AreStringsInOrder(const char *aFirst,
const char *aSecond);
Arguments
aSecond
The second string.
Return value
TRUE If first string is strictly before second string (alphabetical order). FALSE If first string is not strictly before second string (alphabetical order).