clojerl
Clojerl API.
User-friendly API to interact with Clojerl from other BEAM languages.Summary
Functions
-
read(Str)
Reads a binary string and returns a parsed Clojerl form.
-
start()
Starts the
clojerl
OTP application. -
var(QualifiedName)
Returns the var described by
QualifiedName
. -
var(Ns, Name)
Returns the
Name
var in namespaceNs
.
Functions
read(Str)
-spec read(binary()) -> any().
Reads a binary string and returns a parsed Clojerl form.
start()
-spec start() -> ok.
Starts the clojerl
OTP application.
var(QualifiedName)
-spec var(binary() | 'clojerl.Symbol':type()) -> 'clojerl.Var':type().
Returns the var described by QualifiedName
.
var(Ns, Name)
-spec var(any(), any()) -> 'clojerl.Var':type().
Returns the Name
var in namespace Ns
.