Searched defs:Either (Results 1 – 2 of 2) sorted by relevance
101 template <class A, class B> struct Either { struct108 Either(const A& a) : tag(true), a(a) {} in Either() argument109 Either(const B& b) : tag(false), b(b) {} in Either() function
454 const static Kind Either = (Kind)(JIT | Interpreter); variable