From 5f98c3eb62f3085a69f8df36de663bb7c6107341 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Thu, 29 Jan 2015 19:13:39 +0100 Subject: Added `ListOfType` list constructor alias * enables construction of `Cons` structures using the same value type across all their elements --- src/list/list.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/list/list.h') diff --git a/src/list/list.h b/src/list/list.h index c03a0ef..66394fc 100644 --- a/src/list/list.h +++ b/src/list/list.h @@ -21,6 +21,14 @@ struct List { typedef Cons type; }; +template < + typename Type, + Type... Values +> +using ListOfType = List< + std::integral_constant... +>; + template using Head = Car; -- cgit v1.2.3