Skip to content

Clojure Core Essentials

YS has a very large set of useful functions that it inherits from Clojure's clojure.core library External link .

These functions are the bread and butter building blocks of YS programming.

The functions are very well organized in the Clojure Docs Quick Reference External link and you can get to the documentation for each function from there.

This document is a condensed quick reference of the functions that are most commonly used in YS programming.

YS also has the ys::std standard library that provides additional functions.

The YS standard library replaces some Clojure functions with a version more suited to YS. In those cases, the original Clojure function is still available in the ys::clj namespace.

NumberπŸ”—

ArithmeticπŸ”—

Clojure Core:

YS Std:

  • %, %% infix operators
  • add, sub, mul, div named math functions
  • sum, sqr, cube, sqrt, pow, abs
  • add+, sub+, mul+, div+ polymorphic functions

See Also:

ComparisonπŸ”—

Clojure Core:

YS Std:

  • ==, != infix operators
  • eq, ne, lt, gt, le, ge named comparison functions

CastπŸ”—

Clojure Core:

YS Std:

  • to-num, to-int, to-float - polymorphic cast functions

TestπŸ”—

Clojure Core:

BooleanπŸ”—

Clojure Core:

YS Std:

  • truey?, falsey?, to-bool, to-booly

StringπŸ”—

Clojure Core:

YS Std:

  • words, split, join, lines, text, replace, replace1
  • chomp, trim, triml, trimr, lc, uc, uc1, index, pretty

See Also:

Regular ExpressionπŸ”—

Clojure Core:

YS Std:

  • =~, !~ infix operators
  • /.../ regex literals
  • qr

Flow ControlπŸ”—

BooleanπŸ”—

Clojure Core:

YS Std:

  • ||, &&, |||, &&& infix operators
  • or?, and? booly named functions

NormalπŸ”—

Clojure Core:

YS Std:

  • if-lets, when-lets, call, each, exit, sleep

ExceptionπŸ”—

Clojure Core:

YS Std:

  • die, warn, exit, err

FunctionπŸ”—

Clojure Core:

YS Std:

  • \(...) anonymous function syntax
  • . dot chaining infix operator
  • value, call

CollectionπŸ”—

GeneralπŸ”—

Clojure Core:

YS Std:

  • grep, has?, in?

VectorπŸ”—

Clojure Core:

ListπŸ”—

Clojure Core:

MapπŸ”—

Clojure Core:

YS Std:

  • omap, get+

SequenceπŸ”—

Clojure Core:

YS Std:

  • .. infix rng operator
  • rng, reverse

VariableπŸ”—

Clojure Core:

YS Std:

  • =:, .=:, +=:, -=:, *=:, /=: def/let syntax
  • value

I/OπŸ”—

Clojure Core:

YS Std:

  • say, out, warn, pp