mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-25 13:05:05 +02:00
Initial file
This commit is contained in:
parent
f0fb0ab198
commit
72abd66f58
1 changed files with 82 additions and 0 deletions
82
docs/api/builtins.md
Normal file
82
docs/api/builtins.md
Normal file
|
@ -0,0 +1,82 @@
|
||||||
|
# Built-ins
|
||||||
|
|
||||||
|
This section contains all of the primitives and other objects that are included in the Cyclone runtime. These objects are always available regardless of library imports.
|
||||||
|
|
||||||
|
placeholder:
|
||||||
|
- [`*`](#*)
|
||||||
|
|
||||||
|
#*
|
||||||
|
|
||||||
|
+
|
||||||
|
-
|
||||||
|
/
|
||||||
|
<
|
||||||
|
<=
|
||||||
|
=
|
||||||
|
>
|
||||||
|
>=
|
||||||
|
apply
|
||||||
|
boolean?
|
||||||
|
bytevector
|
||||||
|
bytevector-append
|
||||||
|
bytevector-length
|
||||||
|
bytevector-u8-ref
|
||||||
|
bytevector-u8-set!
|
||||||
|
bytevector?
|
||||||
|
car
|
||||||
|
cdr
|
||||||
|
cell
|
||||||
|
cell-get
|
||||||
|
char->integer
|
||||||
|
char?
|
||||||
|
close-input-port
|
||||||
|
close-output-port
|
||||||
|
close-port
|
||||||
|
command-line-arguments
|
||||||
|
cons
|
||||||
|
delete-file
|
||||||
|
eof-object?
|
||||||
|
eq?
|
||||||
|
equal?
|
||||||
|
eqv?
|
||||||
|
error
|
||||||
|
exit
|
||||||
|
file-exists?
|
||||||
|
integer->char
|
||||||
|
integer?
|
||||||
|
length
|
||||||
|
list->string
|
||||||
|
list->vector
|
||||||
|
make-bytevector
|
||||||
|
make-vector
|
||||||
|
null?
|
||||||
|
number->string
|
||||||
|
number?
|
||||||
|
open-input-file
|
||||||
|
open-output-file
|
||||||
|
pair?
|
||||||
|
peek-char
|
||||||
|
port?
|
||||||
|
procedure?
|
||||||
|
read-char
|
||||||
|
real?
|
||||||
|
set-car!
|
||||||
|
set-cdr!
|
||||||
|
set-cell!
|
||||||
|
set-global!
|
||||||
|
string->number
|
||||||
|
string->symbol
|
||||||
|
string-append
|
||||||
|
string-cmp
|
||||||
|
string-length
|
||||||
|
string-ref
|
||||||
|
string-set!
|
||||||
|
string?
|
||||||
|
substring
|
||||||
|
symbol->string
|
||||||
|
symbol?
|
||||||
|
system
|
||||||
|
vector-length
|
||||||
|
vector-ref
|
||||||
|
vector-set!
|
||||||
|
vector?
|
Loading…
Add table
Reference in a new issue