aboutsummaryrefslogtreecommitdiff
path: root/src/list/operation/higher/query.h
diff options
context:
space:
mode:
authorAdrian Kummerlaender2015-02-27 21:30:15 +0100
committerAdrian Kummerlaender2015-02-27 21:30:15 +0100
commit741e4550312a9bf618602c1708745e0ceaf455ec (patch)
treeb31342dafe7d55a3e2c44299a211d5757959db96 /src/list/operation/higher/query.h
parent34530d8532e22afe0026b956ae395ddc666351b3 (diff)
downloadTypeAsValue-741e4550312a9bf618602c1708745e0ceaf455ec.tar
TypeAsValue-741e4550312a9bf618602c1708745e0ceaf455ec.tar.gz
TypeAsValue-741e4550312a9bf618602c1708745e0ceaf455ec.tar.bz2
TypeAsValue-741e4550312a9bf618602c1708745e0ceaf455ec.tar.lz
TypeAsValue-741e4550312a9bf618602c1708745e0ceaf455ec.tar.xz
TypeAsValue-741e4550312a9bf618602c1708745e0ceaf455ec.tar.zst
TypeAsValue-741e4550312a9bf618602c1708745e0ceaf455ec.zip
Renamed `Any` list query to `Every`
* _TypeAsValue_ borrows large parts of its inspirations from _Scheme_ ** i.e. there is no reason for stopping at this point
Diffstat (limited to 'src/list/operation/higher/query.h')
-rw-r--r--src/list/operation/higher/query.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/list/operation/higher/query.h b/src/list/operation/higher/query.h
index c6c73f4..e93e145 100644
--- a/src/list/operation/higher/query.h
+++ b/src/list/operation/higher/query.h
@@ -22,7 +22,7 @@ template <
template<typename> class Predicate,
typename List
>
-using All = Fold<
+using Every = Fold<
And,
Boolean<true>,
Map<Predicate, List>