From e24f25ada7e8f48dc35cb235e045a4324bccb4f2 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sat, 14 Feb 2015 10:43:49 +0100 Subject: Introduced `Eval` function evaluation helper * replaces `typename *::type` constructs with `Eval` applications * aims to further unify function evaluation --- src/list/operation/higher/query.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/list/operation/higher/query.h') diff --git a/src/list/operation/higher/query.h b/src/list/operation/higher/query.h index d2b8e76..1d00267 100644 --- a/src/list/operation/higher/query.h +++ b/src/list/operation/higher/query.h @@ -15,7 +15,7 @@ template < using Any = Fold< Or, Boolean, - typename Map::type + Eval> >; template < @@ -25,7 +25,7 @@ template < using All = Fold< And, Boolean, - typename Map::type + Eval> >; template < @@ -33,7 +33,7 @@ template < typename List > using None = Not< - typename Any::type + Eval> >; template < @@ -43,7 +43,7 @@ template < using Count = Fold< Add, tav::Size<0>, - typename Map::type + Eval> >; } -- cgit v1.2.3