aboutsummaryrefslogtreecommitdiff
path: root/src/list.gleam
diff options
context:
space:
mode:
Diffstat (limited to 'src/list.gleam')
-rw-r--r--src/list.gleam9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/list.gleam b/src/list.gleam
index 7d3d023..5f447de 100644
--- a/src/list.gleam
+++ b/src/list.gleam
@@ -214,15 +214,6 @@ test take {
|> expect:equal(_, [1, 2, 3, 4, 5])
}
-pub fn of(x) {
- [x]
-}
-
-test of() {
- of([]) |> expect:equal(_, [[]])
- of(1) |> expect:equal(_, [1])
-}
-
pub fn new() {
[]
}