Home | History | Annotate | Download | only in common

Lines Matching defs:Is

16  * distributed under the License is distributed on an "AS IS" BASIS,
23 * \brief Template class that is either type of First or Second.
63 bool is (void) const;
114 struct Is;
117 struct Is<First, First, Second>
119 static bool is (const Either<First, Second>& either)
126 struct Is<Second, First, Second>
128 static bool is (const Either<First, Second>& either)
135 bool is (const Either<First, Second>& either)
137 return Is<Type, First, Second>::is(either);
259 bool Either<First, Second>::is (void) const
261 return EitherDetail::is<Type, First, Second>(*this);