Standard Library
YS has over 1000 functions that are always available to your YS programs without
needing to explicitly import (use
) any libraries.
Over 800 of these can be used without a namespace prefix like str/
or math/
.
Most of these functions are from the Clojure standard library
, but YS also has the
ys::std
standard
library that provides additional functions.
This document describes the ys::std
functions and how to use them.
It also links to related functions in the Clojure core library.
Note
In a few cases, 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.
String functionsπ
base64-decode(Str) β Str
β Decode a base64 stringbase64-encode(Str) β Str
β Encode a string to base64base64-points(Str) β [Int]
β Decode a base64 string to code pointsbase64(Str) β Str
β Alias of base64-encode-
blank?(Str) β Str
β Alias ofclojure.string/blank?
True if string is nil, empty or only whitespace
-
chomp(Str) β Str
β Alias ofclojure.string/trim-newline
Remove trailing newlines
-
chop(Str) β Str
β Remove last character -
ends?(Str) β B
β Alias ofclojure.string/ends-with?
True if string ends with suffix
-
escape(Str {Chr:Str}) β Str
β Alias ofclojure.string/escape
Escape special characters in a string
-
index(Str Str) β Int
β Alias ofclojure.string/index-of
Find index of substring
-
join([Str]) β Str
β Join strings or seqs with""
join(sep [Str]) β Str
β Join strings or seqs with a separatorjoins([Str]) β Str
β Join strings with" "
-
lc(Str) β Str
β Alias ofclojure.string/lower-case
Lowercase a string
-
lines(Str) β [Str]
β Split a string into lines pretty(Str) β Str
β Pretty print a valuereplace(X) β X
β Alias ofclojure.core/replace
-
replace(Str Rgx Str?) β Str
β Alias ofclojure.string/replace
Replace all occurrences of regex with new string (default "")
-
replace1(Str Rgx Str) β Str
β Alias ofclojure.string/replace-first
Replace first occurrence of regex with new string
-
rindex(Str Str) β Int
β Alias ofclojure.string/last-index-of
Find last index of substring
-
split(Str) β [Str]
β Likeclojure.string/split
Split on
""
-
split(Str rgx) β [Str]
β Alias ofclojure.string/split
Split a string by a regex
-
starts?(Str Str) β Str
β Alias ofclojure.string/starts-with?
True if string starts with prefix
-
substr(Str Int Int?) β Str
β Substring function with Perl semanticsOffset is 0-based, negative offset counts from end; Optional length is from offset and defaults to end of string; Negative length counts from end of string
-
text([Str]) β Str
β Join list of strings with newlines, adding a newline at the end -
trim(Str) β Str
β Alias ofclojure.string/trim
Trim whitespace from both ends
-
triml(Str) β Str
β Alias ofclojure.string/triml
Trim whitespace from left end
-
trimr(Str) β Str
β Alias ofclojure.string/trimr
Trim whitespace from right end
-
uc(Str) β Str
β Alias ofclojure.string/upper-case
Uppercase a string
-
uc1(Str) β Str
β Alias ofclojure.string/capitalize
Uppercase the first character
-
words(Str) β [Str]
β Split a string into words (split on whitespace)
See also: https://clojuredocs.org/quickref#strings-characters
Collection functionsπ
-
diff(Col Col) β [Str Str Str]
β Alias ofclojure.data/diff
Return the difference of two collections
-
flat(Vec) β Vec
β Likeclojure.core/flatten
Only flattens one level
-
get+(Col Key) β X
β Get a string, keyword or symbol from a map or sequence grep(Fn Col) β Col
β Filter a collection by a predicate functionhas?(Col) β Fn
β Returns a partial function closed over Col-
has?(Col X) β B
β True if collection has XWorks with strings, maps and sequences
-
in?(Col) β Fn
β Returns a partial function closed over Col -
in?(X Col) β B
β True if X is in collectionWorks with strings, maps and sequences
-
omap([X]) β Omap
β Create an ordered map reverse(Col) β Col
β Reverse a string, vector or sequence-
rng(Int Int) β [Int]
β Create a range of numbers or characters, Y is inclusiveIf X is greater than Y, the range is descending
-
slice(Col [Key]) β [X]
β Get a sequence of values from the keys
See also: https://clojuredocs.org/quickref#collections
Math functionsπ
add(Num*) β Num
β Alias ofclojure.core/+
sub(Num+) β Num
β Alias ofclojure.core/-
mul(Num*) β Num
β Alias ofclojure.core/*
div(Num+) β Num
β Division function that returns a float if needed-
add+(X+) β X
β Polymorphic addition functionAdds numbers, strings, chars, sequences, maps, sets and functions
-
sub+(X+) β X
β Polymorphic subtraction functionSubtracts numbers, strings, chars, sequences, maps and sets
-
mul+(X+) β X
β Polymorphic multiplication functionMultiplies numbers, strings and sequences
-
digits(Str) β [Int]
β Convert a string of digits to a sequence of numbers -
floor(Num) β Num
β Alias of CM/floorRound down to the nearest integer
-
pow(Num Num+) β Num
β Raise a number to a power sqr(Num) β Num
β Square a numbercube(Num) β Num
β Cube a numbersqrt(Num) β Num
β Square root of a numbersum([Num]) β Num
β Sum a sequence of numbers
See also: https://clojure.github.io/clojure/clojure.math-api.html
Infix operatorsπ
.
β For chaining functions (foo.bar.baz()
):
β Thisfoo:bar
is same asfoo.bar()
+
β Foradd+
-
β Forsub+
*
β Formul+
/
β Fordiv
**
β Forpow
..
β Forrng
=~
β Forre-find
!~
β Forre-find + not
==
β Foreq
!=
β Forne
>
β Forgt
>=
β Forge
<
β Forlt
<=
β Forle
&&
β Forand
||
β Foror
&&&
β Forand?
|||
β Foror?
Chaining short formsπ
value.#
β Short forvalue.count()
value.$
β Short forvalue.last()
value.++
β Short forvalue.inc()
value.--
β Short forvalue.dec()
value.?
β Short forvalue.truey?()
value.!
β Short forvalue.falsey?()
value.??
β Short forvalue.boolean()
value.!!
β Short forvalue.not()
value.@
β Short for `value.deref()-
value.>>>
β Short forvalue.DBG()
Print value/data to stderr and return the value unchanged
Control functionsπ
-
call(Fn X*) β X
β Call a function or valueFunction can be a string, symbol or function
-
die(Msg)
β Idiomatic error function each(Bindings Body) β X
β Non-lazyclojure.core/for
eval(Str) β X
β Evaluate a string as YS codeexit(RC=0)
β Exit the programif(Cond Then Else) β X
β Functional if used in dot chainingsleep(Secs) β X
β Sleep for a number of seconds-
value(X) β X
β Get var value from var, symbol or stringOften used to convert a string to a function.
-
when+(Cond Body) β X
β Likeclojure.core/when
Binds the result of the condition to the
_
symbol
See also: https://clojuredocs.org/quickref#flow-control
Function functionsπ
defn flip(Fn) β X
β Flip the arguments of a function
Regex functionsπ
=~ X
β Infix re-find operator!~ X
β Infix re-find complement operator
See also: https://clojuredocs.org/quickref#regular-expressions
I/O functionsπ
err(Str*) β nil
β Print to stderr-
out(Str*) β nil
β Print to stdoutFlushes stdout after printing
-
pp(X) β nil
β Pretty print a value -
print(Str*) β nil
β Print to stdout without newlineFlushes stdout after printing
-
read(path) β Str
β Alias ofclojure.core/slurp
Read a file into a string
-
say(Str*) β nil
β Print to stdout with newline -
warn(Str*) β nil
β Print to stderr with newlineFlushes stderr after printing
-
write(path Str) β nil
β Alias ofclojure.core/spit
Write a string to a file
Shorter named alias functionsπ
a(X) β X
β Alias ofclojure.core/identity
len(X) β Int
β Alias ofclojure.core/count
Quoting functionsπ
q(form) β X
β Alias ofclojure.core/quote
qr(str) β Rgx
β Alias ofclojure.core/re-pattern
qw(symbols) β [Str]
β Turn symbols into a vector of strings
Named function for infix operatorsπ
eq
β Alias ofclojure.core/=
ne
β Alias ofclojure.core/not=
gt
β Alias ofclojure.core/>
ge
β Alias ofclojure.core/>=
lt
β Alias ofclojure.core/<
le
β Alias ofclojure.core/<=
Common type conversion functionsπ
to-bool(X) β B
β Convert X to a booleanto-char(X) β Chr
β Convert X to a characterto-float(X) β Flt
β Convert X to a floatto-int(X) β Int
β Convert X to an integerto-keyw(X) β Kwd
β Convert X to a keywordto-list(X) β List
β Convert X to a listto-map(X) β Map
β Convert X to a mapto-num(X) β Num
β Convert X to a numberto-omap(X) β Omap
β Convert X to an ordered mapto-set(X) β Set
β Convert X to a setto-str(X) β Str
β Convert X to a string-
to-type(X) β Str
β Convert X to a string name of its type:"atom"
,"bool"
,"char"
,"class"
,"float"
,"fun"
,"int"
,"keyw"
,"list"
,"map"
,"nil"
,"num"
,"rgx"
,"seq"
,"set"
,"str"
,"sym"
,"var"
,"vec"
-
to-vec(X) β Vec
β Convert X to a vector
Single character casting functionsπ
B(X)
β Convert to a booleanC(X)
β Convert to a characterD(X)
β Deref an atomF(X)
β Convert to a floatI(X)
β Convert to an integerK(X)
β Convert to a keywordL(X)
β Convert to a listM(X)
β Convert to a mapN(X)
β Convert to a numberO(X)
β Convert to an ordered mapS(X)
β Convert to a setT(X)
β Convert to a type name stringV(X)
β Convert to a vectorL+(X*) β List
β Convert to a listM+(X*) β Map
β Convert to a mapO+(X*) β Omap
β Convert to an ordered mapV+(X*) β Vec
β Convert to a vector
Alternate truth functionsπ
falsey?(X) β X
β True if X is falsey - 0, nil, false, emptyF?(X)
β Short forfalsey?
truey?(X) β X
β True if X is not falseyT?(X)
β Short fortruey?
or?(X X+) β X
β Return first truey value or niland?(X X+) β X
β Return last truey value or nil
File system functionsπ
fs-d(Path) β B
β True if path is a directoryfs-e(Path) β B
β True if path existsfs-f(Path) β B
β True if path is a regular filefs-l(Path) β B
β True if path is a symbolic linkfs-r(Path) β B
β True if path is readablefs-s(Path) β B
β True if path is not emptyfs-w(Path) β B
β True if path is writablefs-x(Path) β B
β True if path is executablefs-z(Path) β B
β True if path is emptyfs-abs(Path) β Path
β Get the absolute pathfs-abs?(Path) β B
β True if path is absolutefs-basename(Path Ext?) β B
β Get the file name of a path, without extensionfs-dirname(Path) β Dir
β Get the directory name of a pathfs-filename(Path) β File
β Get the file name of a pathfs-glob(Path) β [Path]
β Glob a pathfs-ls(dir) β [File]
β List a directoryfs-mtime(file) β Int
β Get the modification time of a filefs-rel(Path) β Path
β Get the relative pathfs-rel?(Path) β B
β True if path is relativefs-which(name) β B
β Find the path of an executable
See also: https://github.com/babashka/fs/blob/master/API.md
Date/Time functionsπ
now() β Instant
β Returnsjava.time.Instant
object
Security functionsπ
md5(S) β X
β Calculate the MD5 hash of a stringsha1(S) β X
β Calculate the SHA-1 hash of a stringsha256(S) β X
β Calculate the SHA-256 hash of a string
IPC functionsπ
exec(Cmd Str*) β Result
β Execute a commandprocess(Cmd Str*) β Result
β Execute a commandsh(Cmd Str*) β Result
β Execute a commandshell(Cmd Str*) β Result
β Execute a commandshout(Cmd Str*) β Result
β Execute a command and return the output
See also: https://github.com/babashka/process#readme
External library functionsπ
use-pod(pod-name version) β nil
β Load an external library pod
HTTP functionsπ
curl(URL) β Str
β Get a URL and return the body
YAML document result stashing functionsπ
-
stream() β X
β Mapping of document resultsThe symbol
_
at the top level compiles to(stream)
Atom functionsπ
atom() β Atom
β Create an atom with a nil valueatom(X) β Atom
β Create an atom with a value X-
reset(Atom X) β X
β Alias ofclojure.core/reset!
Set the value of an atom
-
swap(Atom Fn Arg*) β X
β Alias ofclojure.core/swap!
Update the value of an atom
Special functionsπ
-
source(X*) β nil
β Run a YS file as a Bash scriptActs like
clojure.core/comment.
Does nothing in YS. Intended for Bash.
See Alsoπ
- The
ys::std
source code - The
clojure::core
source code