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/operation | |
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/operation')
-rw-r--r-- | src/operation/math.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/operation/math.h b/src/operation/math.h index d855893..e20795b 100644 --- a/src/operation/math.h +++ b/src/operation/math.h @@ -55,7 +55,7 @@ using Modulo = std::integral_constant< >; template <typename X> -using Even = EqualValue< +using Even = IsEqualValue< Modulo<X, Size<2>>, Size<0> >; |