YS Internals Library
This library serves 2 purposes. It provides functions for working with YS code from within a YS program/file.
It also provides functions that are wrappers around common Clojure functions so that they can be used in places where functions are not allowed; like in dot chaining operations.
You can use these functions with the ys/
(or ys::ys/
) prefix.
YS Functionsπ
-
compile
β Compile a YS string to a Clojure string -
eval
β Evaluate a YS string -
load-file
β Load a YS file path -
load-pod
β Load a Babashka Pod -
unload-pods
β Unload all loaded pods -
use
β Use a YS or Clojure library found inYSPATH
. Normally called asuse
, notys/use
.
Macro Wrapper Functionsπ
for
β An eager version of Clojure's lazyfor
macroif
β Wrapper around the Clojureif
special formwhen
β Wrapper around the Clojurewhen
macro