summary refs log tree commit diff
path: root/lib/contains.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/contains.fnl')
-rw-r--r--lib/contains.fnl7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/contains.fnl b/lib/contains.fnl
deleted file mode 100644
index 75275af..0000000
--- a/lib/contains.fnl
+++ /dev/null
@@ -1,7 +0,0 @@
-(fn contains [t x]
-  (accumulate [found false
-               _ v (ipairs t)
-               &until found] ; escape early
-    (or found (= x v))))
-
-{: contains}