| 128 | } |
| 129 | |
| 130 | struct b3SortDataCompare |
| 131 | { |
| 132 | inline bool operator()(const b3SortData& first, const b3SortData& second) const |
| 133 | { |
| 134 | return (first.m_key < second.m_key) || (first.m_key == second.m_key && first.m_value < second.m_value); |
| 135 | } |
| 136 | }; |
| 137 | |
| 138 | void boundSearchTest() |
| 139 | { |