Skip to content

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 in YSPATH. Normally called as use, not ys/use.

Macro Wrapper FunctionsπŸ”—

  • for β€” An eager version of Clojure's lazy for macro
  • if β€” Wrapper around the Clojure if special form
  • when β€” Wrapper around the Clojure when macro