12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- namespace rttr
- {
- namespace detail
- {
- /////////////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////////////////
- // compare whether array lhs is less than rhs
- // the comparison will go down till element wise comparison
- template<typename ElementType, std::size_t Count>
- RTTR_INLINE bool compare_array_less(const ElementType(&lhs)[Count], const ElementType(&rhs)[Count]);
- /////////////////////////////////////////////////////////////////////////////////////////
- } // end namespace detail
- } // end namespace rttr
|