From 1c650cf1bb017f3e38efba9024d75d99381ceb0f Mon Sep 17 00:00:00 2001 From: Scott Richmond Date: Thu, 12 Jun 2025 17:52:00 -0400 Subject: [PATCH] add llist fns --- src/doc.janet | 1 + 1 file changed, 1 insertion(+) diff --git a/src/doc.janet b/src/doc.janet index c7ec684..5802a27 100644 --- a/src/doc.janet +++ b/src/doc.janet @@ -27,6 +27,7 @@ "boolean" ["and" "bool" "bool?" "false?" "not" "or" "true?"] "dicts" ["any?" "assoc" "assoc?" "coll?" "count" "dict" "dict?" "diff" "dissoc" "empty?" "get" "keys" "random" "update" "values"] "lists" ["any?" "append" "at" "butlast" "coll?" "concat" "count" "each!" "empty?" "filter" "first" "fold" "join" "keep" "last" "list" "list?" "map" "ordered?" "random" "range" "rest" "second" "sentence" "slice"] + "llists" ["car" "cdr" "cons" "llist"] "sets" ["any?" "append" "coll?" "concat" "contains?" "count" "empty?" "omit" "random" "set" "set?"] "tuples" ["any?" "at" "coll?" "count" "empty?" "first" "last" "ordered?" "rest" "second" "tuple?"] "strings" ["any?" "chars" "chars/safe" "concat" "count" "downcase" "empty?" "join" "sentence" "show" "slice" "split" "string" "string?" "strip" "to_number" "trim" "upcase" "words"]