From 246cb31c1e20cdcc21a6a607de4b0095c71315d6 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Thu, 12 Feb 2015 14:32:33 +0100 Subject: Implemented `Cond` conditional * returns the `CDR` of the first true `CAR` in a given list of pairs * reimplemented `Apply` base class selection in terms of `Cond` --- src/type.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/type.h') diff --git a/src/type.h b/src/type.h index c175c36..15ba2f8 100644 --- a/src/type.h +++ b/src/type.h @@ -32,6 +32,9 @@ template < > using IsEqualValue = Boolean; +template +using IsTrue = IsEqualValue>; + } #endif // TYPEASVALUE_SRC_TYPE_H_ -- cgit v1.2.3