Home
last modified time | relevance | path

Searched defs:Eq1 (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/libs/mp11/test/
Dmp_unique_if.cpp27 template<class T, class U> using Eq1 = mp_bool< T::value == U::value >; typedef
32 template<class T, class U> struct Eq1: mp_bool< T::value == U::value > {}; struct
/third_party/typescript/tests/cases/conformance/types/conditional/
DconditionalTypes1.ts234 type Eq1<T, U> = Eq<T, U> extends false ? false : true; alias