summaryrefslogtreecommitdiff
path: root/docs/language/operators.md
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-07-27 17:17:56 -0400
committernodist <kevin.comas.git@gmail.com>2026-07-27 17:17:56 -0400
commitbb912b081ed339e4a5419bd3d2ffd7465f2f72d3 (patch)
tree7f34b3af1a72672de1d12c8e23dda419c398dce3 /docs/language/operators.md
parent003119b9f285e5610f56186bce845441409265ae (diff)
bottom up redesign
Diffstat (limited to 'docs/language/operators.md')
-rw-r--r--docs/language/operators.md99
1 files changed, 0 insertions, 99 deletions
diff --git a/docs/language/operators.md b/docs/language/operators.md
deleted file mode 100644
index 2b843ec..0000000
--- a/docs/language/operators.md
+++ /dev/null
@@ -1,99 +0,0 @@
-# General Operators
-
----
-
-## Assign `:`
-
-## Shadow `::`
-
-## Cast `$`
-
-```c
-typedef kpl_result kpl_interface_cast(kpl_type to, const kpl_any from);
-```
-
-## ``log`
-
-Configurable logger, destination can be changed
-
-```c
-typedef void kpl_interface_log(kpl_type type, const kpl_any any, const FILE *file, int32_t idnt, uint32_t options);
-```
-
-## ``debugger`
-
-## ``thread_id`
-
-```text
-Thread_id `unique I32
-```
-
-## ``thread_count`
-
-## ``format`
-
-```text
-Result[String] : Value[String]`format Any
-```
-
-### Formatting
-
-#### Replace
-
-Use `%` to indicate an item from `Any`, use `\%` for a literal `%`
-
-#### Colors
-
-Use `#NAME#` to change the text color, use `#` to reset the text color, use `\#` for a literal `#`
-
-```text
-BOLD
-FAINT
-ITALIC
-UNDERLINE - UL
-
-BACKGROUND - BG
-LIGHT
-
-BLACK
-RED
-GREEN
-YELLOW
-BLUE
-MAGENTA
-CYAN
-GREY
-WHITE
-```
-
-`#NAME#NAME#` use single `#` to apply multiple colors at once
-
-```c
-typedef kpl_result kpl_interface_format(const kpl_buffer *format, [const kpl_any]..., NULL);
-```
-
-## ``panic`
-
-Stops execution and prints `Any` to `stdout`
-
-```text
-`panic any
-```
-
-## ``type`
-
-## ``sync_type`
-
-## ``async_type`
-
-## ``copy`
-
-```c
-typedef kpl_result kpl_interface_copy(const kpl_any any);
-```
-
-## ``hash`
-
-```c
-typedef uint64_t kpl_interface_hash(const kpl_any any);
-```