diff options
author | Adrian Kummerlaender | 2015-02-12 13:36:27 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2015-02-12 13:36:27 +0100 |
commit | 4bb200de716891ed6c9fc182311c02685c8bdfd4 (patch) | |
tree | 2f3028ac8023ab588a3f074b8875d1eeecf1ea5c /src/list | |
parent | ad27a79a2e6bc380e68ec77ae961917a9fb402d3 (diff) | |
download | TypeAsValue-4bb200de716891ed6c9fc182311c02685c8bdfd4.tar TypeAsValue-4bb200de716891ed6c9fc182311c02685c8bdfd4.tar.gz TypeAsValue-4bb200de716891ed6c9fc182311c02685c8bdfd4.tar.bz2 TypeAsValue-4bb200de716891ed6c9fc182311c02685c8bdfd4.tar.lz TypeAsValue-4bb200de716891ed6c9fc182311c02685c8bdfd4.tar.xz TypeAsValue-4bb200de716891ed6c9fc182311c02685c8bdfd4.tar.zst TypeAsValue-4bb200de716891ed6c9fc182311c02685c8bdfd4.zip |
Added `Is` prefix to `EqualValue` and `EqualType`
* analogously to `IsPair`
Diffstat (limited to 'src/list')
-rw-r--r-- | src/list/operation/contains.h | 2 | ||||
-rw-r--r-- | src/list/operation/delete.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/list/operation/contains.h b/src/list/operation/contains.h index 458acc0..c58d6ac 100644 --- a/src/list/operation/contains.h +++ b/src/list/operation/contains.h @@ -12,7 +12,7 @@ template < typename List > using Contains = Any< - Apply<EqualValue, _0, Element>::template type, + Apply<IsEqualValue, _0, Element>::template type, List >; diff --git a/src/list/operation/delete.h b/src/list/operation/delete.h index a524667..430336f 100644 --- a/src/list/operation/delete.h +++ b/src/list/operation/delete.h @@ -12,7 +12,7 @@ template < typename List > using Delete = Remove< - Apply<EqualValue, _0, Element>::template type, + Apply<IsEqualValue, _0, Element>::template type, List >; |