base docs
This commit is contained in:
parent
8af222b52a
commit
0eaf24ba65
3 changed files with 228 additions and 0 deletions
75
docs/base/multi.md
Normal file
75
docs/base/multi.md
Normal file
|
@ -0,0 +1,75 @@
|
||||||
|
# Documentation: ../multi.isbpl
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## >Functions
|
||||||
|
|
||||||
|
## >Variables
|
||||||
|
|
||||||
|
### Context
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
### ISBPLStack
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
### File
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
### ISBPL
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Types
|
||||||
|
|
||||||
|
## >Context
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
### Methods
|
||||||
|
|
||||||
|
#### `copyFunc ::: -> `
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
#### `construct ::: -> `
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
#### `makeStack ::: -> `
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
#### `eval ::: -> `
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
#### `evalNewStack ::: -> `
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
#### `evalCustom ::: -> `
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
### Variables
|
||||||
|
|
||||||
|
#### jContext
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
73
docs/base/stream.md
Normal file
73
docs/base/stream.md
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
# Documentation: ../stream.isbpl
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## >Functions
|
||||||
|
|
||||||
|
### `STREAM.stdin ::: -> `
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
### `stream.write ::: -> `
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
### `stream ::: -> `
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
### `stream.readline ::: -> `
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
## >Variables
|
||||||
|
|
||||||
|
### STREAM.create.file.out
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
### STREAM.close
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
### STREAM.create.socket
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
### STREAM.create.server
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
### STREAM.create.file.in
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
### STREAM.read
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
### STREAM.write
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
### STREAM.aread
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
### STREAM.awrite
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
80
docs/base/time.md
Normal file
80
docs/base/time.md
Normal file
|
@ -0,0 +1,80 @@
|
||||||
|
# Documentation: ../time.isbpl
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## >Functions
|
||||||
|
|
||||||
|
### `sleep ::: -> `
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
### `delay ::: -> `
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
### `delays ::: -> `
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
### `getms ::: -> `
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
### `time ::: -> `
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
## >Variables
|
||||||
|
|
||||||
|
### Timer
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Types
|
||||||
|
|
||||||
|
## >Timer
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
### Methods
|
||||||
|
|
||||||
|
#### `start ::: -> `
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
#### `timeTaken ::: -> `
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
#### `end ::: -> `
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
### Variables
|
||||||
|
|
||||||
|
#### startMS
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
#### timeTakenTMP
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
#### stopMS
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue