aboutsummaryrefslogtreecommitdiff
path: root/test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test.cc')
-rw-r--r--test.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/test.cc b/test.cc
index 8a5c499..931d8f1 100644
--- a/test.cc
+++ b/test.cc
@@ -19,6 +19,7 @@
#include "list/generator/make_list.h"
#include "list/generator/higher/list_tabulate.h"
#include "list/operation/delete.h"
+#include "list/operation/delete_nth.h"
#include "function/apply.h"
@@ -595,6 +596,19 @@ static_assert(
"(delete 4 (list 1 2 3)) != (list 1 2 3)"
);
+// list delete nth
+
+static_assert(
+ std::is_same<
+ tav::List<tav::Int<1>, tav::Int<3>>::type,
+ tav::DeleteNth<
+ tav::Size<1>,
+ tav::List<tav::Int<1>, tav::Int<2>, tav::Int<3>>::type
+ >::type
+ >::value,
+ "(delete-nth 1 (list 1 2 3)) != (list 1 3)"
+);
+
// list partition
static_assert(