HasOperatorEqualsHelper()

System::Collections::Generic::Details::HasOperatorEqualsHelper(T *, T *) function

Helper function to determine whether specific class has operator ==.

template<class T,typename Dummy> std::true_type System::Collections::Generic::Details::HasOperatorEqualsHelper(T *, T *)

Template parameters

ParameterDescription
TType to check.
DummyDummy argument for SFINAE magic.

Return Value

Value of std::true_type if operator == is present and false otherwise.

System::Collections::Generic::Details::HasOperatorEqualsHelper(void *, void *) function

Helper function to determine whether specific class has operator ==.

std::false_type System::Collections::Generic::Details::HasOperatorEqualsHelper(void *, void *)

Return Value

Value of std::true_type if operator == is present and false otherwise.

See Also