diff options
author | Adrian Kummerlaender | 2015-02-27 21:30:15 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2015-02-27 21:30:15 +0100 |
commit | 741e4550312a9bf618602c1708745e0ceaf455ec (patch) | |
tree | b31342dafe7d55a3e2c44299a211d5757959db96 /src | |
parent | 34530d8532e22afe0026b956ae395ddc666351b3 (diff) | |
download | TypeAsValue-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')
-rw-r--r-- | src/list/operation/higher/query.h | 2 |
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> |