Searched defs:conditional_t (Results 1 – 4 of 4) sorted by relevance
21 template <bool b, class T, class U> using conditional_t = typename conditional<b, T, U>::type; typedef
273 using conditional_t = typename std::conditional<B, T, F>::type; variable
253 using conditional_t = typename std::conditional<B, T, F>::type; variable
129 TEST(LlvmLibcTypeTraitsTest, conditional_t) { in TEST() argument