cljrs-builtins 0.1.26

Built-in function implementations for clojurust (arithmetic, collections, I/O, regex)
Documentation
/// The set of names that trigger special-form dispatch.
pub const SPECIAL_FORMS: &[&str] = &[
    "def",
    "fn*",
    "fn",
    "if",
    "do",
    "let*",
    "let",
    "loop*",
    "loop",
    "recur",
    "quote",
    "var",
    "set!",
    "throw",
    "try",
    "defn",
    "defn-",
    "defmacro",
    "defonce",
    "and",
    "or",
    ".",
    "ns",
    "require",
    "letfn",
    "in-ns",
    "alias",
    "defprotocol",
    "extend-type",
    "extend-protocol",
    "defmulti",
    "defmethod",
    "defrecord",
    "reify",
    "load-file",
    "binding",
    "with-out-str",
];