From 8432906bf9be6f16aafdb23aaed34f1247404329 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Fri, 23 Jan 2015 20:32:48 +0100 Subject: 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 --- src/operation/math.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/operation') 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 +using Square = Multiply; + template using Even = Boolean<(X::value % 2 == 0)>; -- cgit v1.2.3