Lines Matching refs:order
71 - order: null < boolean < number < object < array < string < binary
86 static constexpr std::array<std::uint8_t, 9> order = {{
96 if (l_index < order.size() && r_index < order.size())
98 return order[l_index] <=> order[r_index]; // *NOPAD*
102 return l_index < order.size() && r_index < order.size() && order[l_index] < order[r_index];