CodePorting.Translator.Cs2Cpp.Framework
System::detail::has_operator_less< T, Sfinae > Struct Template Reference

Checks whether operator < exists in specified type. If so, inherits std::true_type, otherwise inherits std::false_type. Can be used in std::enable_if. More...

#include <detail.h>

Inherits std::false_type.

Detailed Description

template<typename T, typename Sfinae = void>
struct System::detail::has_operator_less< T, Sfinae >

Checks whether operator < exists in specified type. If so, inherits std::true_type, otherwise inherits std::false_type. Can be used in std::enable_if.

Template Parameters
TType to check for operator < existance.
SfinaeFormal template argument for SFINAE to work.