From 0806109044c70d4a0354baf3bbdbce6a44585f42 Mon Sep 17 00:00:00 2001 From: Danilo Silva Date: Sun, 19 Sep 2021 16:14:00 -0300 Subject: [PATCH] List.cons externalization --- src/List.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/List.elm b/src/List.elm index 83f411c0..dbbac5b8 100644 --- a/src/List.elm +++ b/src/List.elm @@ -1,5 +1,5 @@ module List exposing - ( singleton, repeat, range, (::) + ( singleton, repeat, range, (::), cons , map, indexedMap, foldl, foldr, filter, filterMap , length, reverse, member, all, any, maximum, minimum, sum, product , append, concat, concatMap, intersperse, map2, map3, map4, map5