AddOp |
Implement the Scheme standard functions "+" and "-".
|
AppendValues |
|
ApplyToArgs |
Implement the standard Scheme function "apply".
|
ApplyWithValues |
This procedure's first argument values are applied as argument list to the second argument.
|
ArithOp |
|
ArrayRef |
|
ArraySet |
|
BitwiseOp |
|
CallCC |
Implement the Scheme standard function "call-with-current-continuation".
|
CallWithValues |
|
CompileArith |
|
Convert |
|
Curry1 |
A curried procedure.
|
DisplayFormat |
Handle formatted output for Lisp-like languages.
|
DivideOp |
Implement the Scheme standard function "/".
|
Expt |
Implement the standard Scheme procedure "expt".
|
Format |
|
GetModuleClass |
Special procedure to get the Class of the current module.
|
GetNamedPart |
Procedure to get the value of a named component of an object.
|
IntegerFormat |
|
IsEq |
Implement the standard Scheme function eq?
and the Lisp eq.
|
IsEqual |
Implement the standard Scheme procedure equal?
and the Lisp equal.
|
MakeDynamic |
Implement the 'dynamic' constructor function.
|
MakeList |
Implement the Scheme standard function "list".
|
MakeProcedure |
|
MakePromise |
|
MakeSplice |
A pseudo-function whose argument is splice into an outer argument list.
|
MultiplyOp |
Implement the Scheme standard function "*".
|
NamedPart |
A reference to a named feature/part of a specific object.
|
NumberCompare |
This implements the numeric comparison relations: < , <= , etc.
|
ObjectFormat |
|
ParseFormat |
|
RunProcess |
The Kawa run-process command builds and runs a Process.
|
SetNamedPart |
Procedure to get the value of a named component of an object.
|
Setter |
Implements Kawa extension function "setter", as in SRFI-17.
|
ValuesMap |
Map a function over a value sequence, yielding a new sequence.
|