diff options
author | Adrian Kummerlaender | 2015-01-23 20:32:48 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2015-01-23 20:32:48 +0100 |
commit | 8432906bf9be6f16aafdb23aaed34f1247404329 (patch) | |
tree | 230acd5c97b668ce47d34a0ae1a445cf93c91af3 /src/operation | |
parent | 0cbc85dd74103ec5c7b2ac5802721ccf051d8454 (diff) | |
download | TypeAsValue-8432906bf9be6f16aafdb23aaed34f1247404329.tar TypeAsValue-8432906bf9be6f16aafdb23aaed34f1247404329.tar.gz TypeAsValue-8432906bf9be6f16aafdb23aaed34f1247404329.tar.bz2 TypeAsValue-8432906bf9be6f16aafdb23aaed34f1247404329.tar.lz TypeAsValue-8432906bf9be6f16aafdb23aaed34f1247404329.tar.xz TypeAsValue-8432906bf9be6f16aafdb23aaed34f1247404329.tar.zst TypeAsValue-8432906bf9be6f16aafdb23aaed34f1247404329.zip |
Implemented `ListTabulate` in terms of `Iota` and `Map`
* added `Square` function to math operations header to facilitate a simple test case
* added appropriate test case
Diffstat (limited to 'src/operation')
-rw-r--r-- | src/operation/math.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/operation/math.h b/src/operation/math.h index b06eb35..0ede3f5 100644 --- a/src/operation/math.h +++ b/src/operation/math.h @@ -41,6 +41,9 @@ using Divide = typename std::integral_constant< X::value / Y::value >::type; +template <typename Base> +using Square = Multiply<Base, Base>; + template <typename X> using Even = Boolean<(X::value % 2 == 0)>; |