diff --git a/c-api/CHANGELOG_8md.html b/c-api/CHANGELOG_8md.html
index 5ea18a96..152cd373 100644
--- a/c-api/CHANGELOG_8md.html
+++ b/c-api/CHANGELOG_8md.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: CHANGELOG.md File Reference
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/CODE__OF__CONDUCT_8md.html b/c-api/CODE__OF__CONDUCT_8md.html
index 2ffe9fae..ad75c7df 100644
--- a/c-api/CODE__OF__CONDUCT_8md.html
+++ b/c-api/CODE__OF__CONDUCT_8md.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: CODE_OF_CONDUCT.md File Reference
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/README_8md.html b/c-api/README_8md.html
index 81132fa0..9c6337c8 100644
--- a/c-api/README_8md.html
+++ b/c-api/README_8md.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: README.md File Reference
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/annotated.html b/c-api/annotated.html
index c89e8dc1..a97587fc 100644
--- a/c-api/annotated.html
+++ b/c-api/annotated.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Data Structures
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -71,38 +74,44 @@ $(function() {
C boolean_type The boolean type: True or False
C bytevector_type Bytevector type
C c_opaque_type C Opaque type - a wrapper around a pointer of any type
- C closure0_type A closed-over function with no variables
- C closure1_type A closed-over function with one variable
- C closureN_type A closed-over function with zero or more closed-over variables
- C common_type A union of all the constant-size objects
- C complex_num_type Complex number
- C cond_var_type The condition variable thread synchronization type
- C cvar_type C-variable integration type - wrapper around a Cyclone object pointer
- C double_type Double-precision floating point type, also known as a flonum
- C gc_free_list_t
- C gc_header_type_t
- C gc_heap_root_t
- C gc_heap_t
- C gc_thread_data_t
- C hashset_st
- C integer_type Deprecated - boxed integers
- C list_2_type
- C list_3_type
- C list_4_type
- C macro_type Closure for a macro
- C mark_buffer_t
- C mutex_type The mutex thread synchronization type
- C pair_type The pair (cons) type
- C port_type The port object type
- C primitive_type A function built into the runtime
- C string_type The string type
- C symbol_type Symbols are similar to strings, but only one instance of each unique symbol is created, so comparisons are O(1)
- C vector_2_type
- C vector_3_type
- C vector_4_type
- C vector_5_type
- C vector_type Vector type
- C vpbuffer_t
+ C ck_array
+ C ck_array_iterator
+ C ck_hs
+ C ck_malloc
+ C closure0_type A closed-over function with no variables
+ C closure1_type A closed-over function with one variable
+ C closureN_type A closed-over function with zero or more closed-over variables
+ C common_type A union of all the constant-size objects
+ C complex_num_type Complex number
+ C cond_var_type The condition variable thread synchronization type
+ C cvar_type C-variable integration type - wrapper around a Cyclone object pointer
+ C double_type Double-precision floating point type, also known as a flonum
+ C gc_free_list_t
+ C gc_header_type_t
+ C gc_heap_root_t
+ C gc_heap_t
+ C gc_thread_data_t
+ C hashset_st
+ C integer_type Deprecated - boxed integers
+ C list_2_type
+ C list_3_type
+ C list_4_type
+ C macro_type Closure for a macro
+ C mark_buffer_t
+ C mutex_type The mutex thread synchronization type
+ C pair_type The pair (cons) type
+ C port_type The port object type
+ C primitive_type A function built into the runtime
+ C simple_hashset_item_st
+ C simple_hashset_st
+ C string_type The string type
+ C symbol_type Symbols are similar to strings, but only one instance of each unique symbol is created, so comparisons are O(1)
+ C vector_2_type
+ C vector_3_type
+ C vector_4_type
+ C vector_5_type
+ C vector_type Vector type
+ C vpbuffer_t
@@ -110,7 +119,7 @@ $(function() {
diff --git a/c-api/ck-polyfill_8c.html b/c-api/ck-polyfill_8c.html
new file mode 100644
index 00000000..8009acdb
--- /dev/null
+++ b/c-api/ck-polyfill_8c.html
@@ -0,0 +1,136 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck-polyfill.c File Reference
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
#include "cyclone/types.h "
+
#include "cyclone/runtime.h "
+
#include "ck-polyfill.h "
+
#include <unistd.h>
+
+
+bool ck_array_commit (ck_array_t *array)
+
+bool ck_array_init (ck_array_t *array, unsigned int mode, struct ck_malloc *allocator, unsigned int initial_length)
+
+int ck_array_put_unique (ck_array_t *array, void *pointer)
+
+bool ck_array_remove (ck_array_t *array, void *pointer)
+
+void * ck_hs_get (ck_hs_t *_hs, unsigned long hash, const void *key)
+
+bool ck_hs_init (ck_hs_t *hs, unsigned int mode, ck_hs_hash_cb_t *hash_func, ck_hs_compare_cb_t *cmp, struct ck_malloc *alloc, unsigned long capacity, unsigned long seed)
+
+bool ck_hs_put (ck_hs_t *_hs, unsigned long hash, const void *key)
+
+void ck_polyfill_init ()
+
+void ck_pr_add_8 (uint8_t *target, uint8_t delta)
+
+void ck_pr_add_int (int *target, int delta)
+
+void ck_pr_add_ptr (void *target, uintptr_t delta)
+
+bool ck_pr_cas_8 (uint8_t *target, uint8_t old_value, uint8_t new_value)
+
+bool ck_pr_cas_int (int *target, int old_value, int new_value)
+
+bool ck_pr_cas_ptr (void *target, void *old_value, void *new_value)
+
+uint8_t ck_pr_load_8 (const uint8_t *target)
+
+int ck_pr_load_int (const int *target)
+
+void * ck_pr_load_ptr (const void *target)
+
+void ck_pr_store_ptr (void *target, void *value)
+
+size_t hash_function (const char *p, size_t len)
+
+int simple_hashset_add (simple_hashset_t set, symbol_type *key)
+
+simple_hashset_t simple_hashset_create ()
+
+void simple_hashset_destroy (simple_hashset_t set)
+
+int simple_hashset_is_member (simple_hashset_t set, symbol_type *key)
+
+void simple_hashset_set_hash_function (simple_hashset_t set, hash_func_t func)
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_a05c1197869d9377d23d12cda668fb32a.html b/c-api/ck-polyfill_8c_a05c1197869d9377d23d12cda668fb32a.html
new file mode 100644
index 00000000..7af02dbc
--- /dev/null
+++ b/c-api/ck-polyfill_8c_a05c1197869d9377d23d12cda668fb32a.html
@@ -0,0 +1,172 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_hs_init
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_hs_init()
+
+
+
+
+
+ bool ck_hs_init
+ (
+ ck_hs_t *
+ hs ,
+
+
+
+
+ unsigned int
+ mode ,
+
+
+
+
+ ck_hs_hash_cb_t *
+ hash_func ,
+
+
+
+
+ ck_hs_compare_cb_t *
+ cmp ,
+
+
+
+
+ struct ck_malloc *
+ alloc ,
+
+
+
+
+ unsigned long
+ capacity ,
+
+
+
+
+ unsigned long
+ seed
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_a09284a9328a6f2f56fe7154a66aca030.html b/c-api/ck-polyfill_8c_a09284a9328a6f2f56fe7154a66aca030.html
new file mode 100644
index 00000000..476578b6
--- /dev/null
+++ b/c-api/ck-polyfill_8c_a09284a9328a6f2f56fe7154a66aca030.html
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_array_remove
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_array_remove()
+
+
+
+
+
+ bool ck_array_remove
+ (
+ ck_array_t *
+ array ,
+
+
+
+
+ void *
+ pointer
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_a1362b105a42d4dda74d1e484e692a7e0.html b/c-api/ck-polyfill_8c_a1362b105a42d4dda74d1e484e692a7e0.html
new file mode 100644
index 00000000..790823fc
--- /dev/null
+++ b/c-api/ck-polyfill_8c_a1362b105a42d4dda74d1e484e692a7e0.html
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_pr_add_8
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_pr_add_8()
+
+
+
+
+
+ void ck_pr_add_8
+ (
+ uint8_t *
+ target ,
+
+
+
+
+ uint8_t
+ delta
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_a1de670701fe68ccdea5676cf3996ad31.html b/c-api/ck-polyfill_8c_a1de670701fe68ccdea5676cf3996ad31.html
new file mode 100644
index 00000000..248bcb6c
--- /dev/null
+++ b/c-api/ck-polyfill_8c_a1de670701fe68ccdea5676cf3996ad31.html
@@ -0,0 +1,154 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_array_init
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_array_init()
+
+
+
+
+
+ bool ck_array_init
+ (
+ ck_array_t *
+ array ,
+
+
+
+
+ unsigned int
+ mode ,
+
+
+
+
+ struct ck_malloc *
+ allocator ,
+
+
+
+
+ unsigned int
+ initial_length
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_a1eedcf449b92ae12819e428f0a037623.html b/c-api/ck-polyfill_8c_a1eedcf449b92ae12819e428f0a037623.html
new file mode 100644
index 00000000..97acf980
--- /dev/null
+++ b/c-api/ck-polyfill_8c_a1eedcf449b92ae12819e428f0a037623.html
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_array_commit
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_array_commit()
+
+
+
+
+
+ bool ck_array_commit
+ (
+ ck_array_t *
+ array )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_a28e59bb30b5095d36bfa1a0b48c45b9a.html b/c-api/ck-polyfill_8c_a28e59bb30b5095d36bfa1a0b48c45b9a.html
new file mode 100644
index 00000000..ed007fd3
--- /dev/null
+++ b/c-api/ck-polyfill_8c_a28e59bb30b5095d36bfa1a0b48c45b9a.html
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_pr_load_int
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_pr_load_int()
+
+
+
+
+
+ int ck_pr_load_int
+ (
+ const int *
+ target )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_a3433612a20a46ec64e1d4a20669c5286.html b/c-api/ck-polyfill_8c_a3433612a20a46ec64e1d4a20669c5286.html
new file mode 100644
index 00000000..be701120
--- /dev/null
+++ b/c-api/ck-polyfill_8c_a3433612a20a46ec64e1d4a20669c5286.html
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_pr_add_int
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_pr_add_int()
+
+
+
+
+
+ void ck_pr_add_int
+ (
+ int *
+ target ,
+
+
+
+
+ int
+ delta
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_a3a1366376e0e716c87d495382ac849b2.html b/c-api/ck-polyfill_8c_a3a1366376e0e716c87d495382ac849b2.html
new file mode 100644
index 00000000..aa617aac
--- /dev/null
+++ b/c-api/ck-polyfill_8c_a3a1366376e0e716c87d495382ac849b2.html
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_pr_cas_8
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_pr_cas_8()
+
+
+
+
+
+ bool ck_pr_cas_8
+ (
+ uint8_t *
+ target ,
+
+
+
+
+ uint8_t
+ old_value ,
+
+
+
+
+ uint8_t
+ new_value
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_a3eb42dd84fe4bbfbeb0cbcc582867e7a.html b/c-api/ck-polyfill_8c_a3eb42dd84fe4bbfbeb0cbcc582867e7a.html
new file mode 100644
index 00000000..8715a05e
--- /dev/null
+++ b/c-api/ck-polyfill_8c_a3eb42dd84fe4bbfbeb0cbcc582867e7a.html
@@ -0,0 +1,131 @@
+
+
+
+
+
+
+
+Cyclone Scheme: simple_hashset_create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ simple_hashset_create()
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_a4832fb45f6f3a3599e58f4e3b17e74c1.html b/c-api/ck-polyfill_8c_a4832fb45f6f3a3599e58f4e3b17e74c1.html
new file mode 100644
index 00000000..5be5fdf7
--- /dev/null
+++ b/c-api/ck-polyfill_8c_a4832fb45f6f3a3599e58f4e3b17e74c1.html
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+Cyclone Scheme: simple_hashset_add
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ simple_hashset_add()
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_a4cfe0d449cb75178ced5f81b860bd54b.html b/c-api/ck-polyfill_8c_a4cfe0d449cb75178ced5f81b860bd54b.html
new file mode 100644
index 00000000..300d2299
--- /dev/null
+++ b/c-api/ck-polyfill_8c_a4cfe0d449cb75178ced5f81b860bd54b.html
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+Cyclone Scheme: simple_hashset_set_hash_function
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ simple_hashset_set_hash_function()
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_a4e2dbefced04c76a62acd40d771929ac.html b/c-api/ck-polyfill_8c_a4e2dbefced04c76a62acd40d771929ac.html
new file mode 100644
index 00000000..8dba044a
--- /dev/null
+++ b/c-api/ck-polyfill_8c_a4e2dbefced04c76a62acd40d771929ac.html
@@ -0,0 +1,131 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_polyfill_init
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_polyfill_init()
+
+
+
+
+
+ void ck_polyfill_init
+ (
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_a671b8af596454e3ecde5efa6c4a5594b.html b/c-api/ck-polyfill_8c_a671b8af596454e3ecde5efa6c4a5594b.html
new file mode 100644
index 00000000..256a904f
--- /dev/null
+++ b/c-api/ck-polyfill_8c_a671b8af596454e3ecde5efa6c4a5594b.html
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_pr_cas_int
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_pr_cas_int()
+
+
+
+
+
+ bool ck_pr_cas_int
+ (
+ int *
+ target ,
+
+
+
+
+ int
+ old_value ,
+
+
+
+
+ int
+ new_value
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_aa41549465cd6f8d783af49d9d1202c3e.html b/c-api/ck-polyfill_8c_aa41549465cd6f8d783af49d9d1202c3e.html
new file mode 100644
index 00000000..d989e51b
--- /dev/null
+++ b/c-api/ck-polyfill_8c_aa41549465cd6f8d783af49d9d1202c3e.html
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+Cyclone Scheme: simple_hashset_is_member
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ simple_hashset_is_member()
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_aa5509327fe3eea5425e91af4d5b867a3.html b/c-api/ck-polyfill_8c_aa5509327fe3eea5425e91af4d5b867a3.html
new file mode 100644
index 00000000..b520886e
--- /dev/null
+++ b/c-api/ck-polyfill_8c_aa5509327fe3eea5425e91af4d5b867a3.html
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+Cyclone Scheme: simple_hashset_destroy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ simple_hashset_destroy()
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_aae25a4ae8f55a21072bb41b9d17a8669.html b/c-api/ck-polyfill_8c_aae25a4ae8f55a21072bb41b9d17a8669.html
new file mode 100644
index 00000000..d15166a1
--- /dev/null
+++ b/c-api/ck-polyfill_8c_aae25a4ae8f55a21072bb41b9d17a8669.html
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_pr_load_ptr
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_pr_load_ptr()
+
+
+
+
+
+ void* ck_pr_load_ptr
+ (
+ const void *
+ target )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_ab699e724fb4dd47f237f37ec752e6146.html b/c-api/ck-polyfill_8c_ab699e724fb4dd47f237f37ec752e6146.html
new file mode 100644
index 00000000..10f2eb5c
--- /dev/null
+++ b/c-api/ck-polyfill_8c_ab699e724fb4dd47f237f37ec752e6146.html
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_hs_get
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_hs_get()
+
+
+
+
+
+ void* ck_hs_get
+ (
+ ck_hs_t *
+ _hs ,
+
+
+
+
+ unsigned long
+ hash ,
+
+
+
+
+ const void *
+ key
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_ad023e16214331cef937b1b186b720059.html b/c-api/ck-polyfill_8c_ad023e16214331cef937b1b186b720059.html
new file mode 100644
index 00000000..5f33250a
--- /dev/null
+++ b/c-api/ck-polyfill_8c_ad023e16214331cef937b1b186b720059.html
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_pr_add_ptr
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_pr_add_ptr()
+
+
+
+
+
+ void ck_pr_add_ptr
+ (
+ void *
+ target ,
+
+
+
+
+ uintptr_t
+ delta
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_ad63e02ca7a2489c49366070adcd8000e.html b/c-api/ck-polyfill_8c_ad63e02ca7a2489c49366070adcd8000e.html
new file mode 100644
index 00000000..4ade6c4e
--- /dev/null
+++ b/c-api/ck-polyfill_8c_ad63e02ca7a2489c49366070adcd8000e.html
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_pr_store_ptr
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_pr_store_ptr()
+
+
+
+
+
+ void ck_pr_store_ptr
+ (
+ void *
+ target ,
+
+
+
+
+ void *
+ value
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_aea8b497a4b1073c064c005a54dda873f.html b/c-api/ck-polyfill_8c_aea8b497a4b1073c064c005a54dda873f.html
new file mode 100644
index 00000000..2a4eff3d
--- /dev/null
+++ b/c-api/ck-polyfill_8c_aea8b497a4b1073c064c005a54dda873f.html
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_pr_cas_ptr
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_pr_cas_ptr()
+
+
+
+
+
+ bool ck_pr_cas_ptr
+ (
+ void *
+ target ,
+
+
+
+
+ void *
+ old_value ,
+
+
+
+
+ void *
+ new_value
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_af5fe42149e5a96c9b5f8f3feaac41d09.html b/c-api/ck-polyfill_8c_af5fe42149e5a96c9b5f8f3feaac41d09.html
new file mode 100644
index 00000000..eccde348
--- /dev/null
+++ b/c-api/ck-polyfill_8c_af5fe42149e5a96c9b5f8f3feaac41d09.html
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_array_put_unique
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_array_put_unique()
+
+
+
+
+
+ int ck_array_put_unique
+ (
+ ck_array_t *
+ array ,
+
+
+
+
+ void *
+ pointer
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_af8b08c24e950b8a877a47477bcf2ff1d.html b/c-api/ck-polyfill_8c_af8b08c24e950b8a877a47477bcf2ff1d.html
new file mode 100644
index 00000000..dccf1738
--- /dev/null
+++ b/c-api/ck-polyfill_8c_af8b08c24e950b8a877a47477bcf2ff1d.html
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_hs_put
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_hs_put()
+
+
+
+
+
+ bool ck_hs_put
+ (
+ ck_hs_t *
+ _hs ,
+
+
+
+
+ unsigned long
+ hash ,
+
+
+
+
+ const void *
+ key
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_afdac0f51b68deac9b2ec1f564f9bc385.html b/c-api/ck-polyfill_8c_afdac0f51b68deac9b2ec1f564f9bc385.html
new file mode 100644
index 00000000..7f0496d9
--- /dev/null
+++ b/c-api/ck-polyfill_8c_afdac0f51b68deac9b2ec1f564f9bc385.html
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+Cyclone Scheme: hash_function
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ hash_function()
+
+
+
+
+
+ size_t hash_function
+ (
+ const char *
+ p ,
+
+
+
+
+ size_t
+ len
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8c_aff941011c123fa1044fc49a416153a3a.html b/c-api/ck-polyfill_8c_aff941011c123fa1044fc49a416153a3a.html
new file mode 100644
index 00000000..a5221d9c
--- /dev/null
+++ b/c-api/ck-polyfill_8c_aff941011c123fa1044fc49a416153a3a.html
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_pr_load_8
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_pr_load_8()
+
+
+
+
+
+ uint8_t ck_pr_load_8
+ (
+ const uint8_t *
+ target )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h.html b/c-api/ck-polyfill_8h.html
new file mode 100644
index 00000000..f350e3dd
--- /dev/null
+++ b/c-api/ck-polyfill_8h.html
@@ -0,0 +1,186 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck-polyfill.h File Reference
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
#include "cyclone/types.h "
+
#include "cyclone/hashset.h "
+
#include <stdbool.h>
+
#include <stdint.h>
+
+
Go to the source code of this file.
+
+
+bool ck_array_commit (ck_array_t *array)
+
+bool ck_array_init (ck_array_t *array, unsigned int mode, struct ck_malloc *allocator, unsigned int initial_length)
+
+int ck_array_put_unique (ck_array_t *array, void *pointer)
+
+bool ck_array_remove (ck_array_t *array, void *pointer)
+
+void * ck_hs_get (ck_hs_t *, unsigned long, const void *)
+
+bool ck_hs_init (ck_hs_t *, unsigned int, ck_hs_hash_cb_t *, ck_hs_compare_cb_t *, struct ck_malloc *, unsigned long, unsigned long)
+
+bool ck_hs_put (ck_hs_t *, unsigned long, const void *)
+
+void ck_polyfill_init ()
+
+void ck_pr_add_8 (uint8_t *target, uint8_t delta)
+
+void ck_pr_add_int (int *target, int delta)
+
+void ck_pr_add_ptr (void *target, uintptr_t delta)
+
+bool ck_pr_cas_8 (uint8_t *target, uint8_t old_value, uint8_t new_value)
+
+bool ck_pr_cas_int (int *target, int old_value, int new_value)
+
+bool ck_pr_cas_ptr (void *target, void *old_value, void *new_value)
+
+uint8_t ck_pr_load_8 (const uint8_t *target)
+
+int ck_pr_load_int (const int *target)
+
+void * ck_pr_load_ptr (const void *target)
+
+void ck_pr_store_ptr (void *target, void *value)
+
+int simple_hashset_add (simple_hashset_t set, symbol_type *key)
+
+simple_hashset_t simple_hashset_create (void)
+
+void simple_hashset_destroy (simple_hashset_t set)
+
+int simple_hashset_is_member (simple_hashset_t set, symbol_type *key)
+
+void simple_hashset_set_hash_function (simple_hashset_t set, hash_func_t func)
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a09284a9328a6f2f56fe7154a66aca030.html b/c-api/ck-polyfill_8h_a09284a9328a6f2f56fe7154a66aca030.html
new file mode 100644
index 00000000..b628d881
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a09284a9328a6f2f56fe7154a66aca030.html
@@ -0,0 +1,154 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_array_remove
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_array_remove()
+
+
+
+
+
+ bool ck_array_remove
+ (
+ ck_array_t *
+ array ,
+
+
+
+
+ void *
+ pointer
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a1362b105a42d4dda74d1e484e692a7e0.html b/c-api/ck-polyfill_8h_a1362b105a42d4dda74d1e484e692a7e0.html
new file mode 100644
index 00000000..799e7093
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a1362b105a42d4dda74d1e484e692a7e0.html
@@ -0,0 +1,154 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_pr_add_8
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_pr_add_8()
+
+
+
+
+
+ void ck_pr_add_8
+ (
+ uint8_t *
+ target ,
+
+
+
+
+ uint8_t
+ delta
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a1de670701fe68ccdea5676cf3996ad31.html b/c-api/ck-polyfill_8h_a1de670701fe68ccdea5676cf3996ad31.html
new file mode 100644
index 00000000..049d6dbd
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a1de670701fe68ccdea5676cf3996ad31.html
@@ -0,0 +1,166 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_array_init
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_array_init()
+
+
+
+
+
+ bool ck_array_init
+ (
+ ck_array_t *
+ array ,
+
+
+
+
+ unsigned int
+ mode ,
+
+
+
+
+ struct ck_malloc *
+ allocator ,
+
+
+
+
+ unsigned int
+ initial_length
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a1eedcf449b92ae12819e428f0a037623.html b/c-api/ck-polyfill_8h_a1eedcf449b92ae12819e428f0a037623.html
new file mode 100644
index 00000000..252ac5c9
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a1eedcf449b92ae12819e428f0a037623.html
@@ -0,0 +1,144 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_array_commit
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_array_commit()
+
+
+
+
+
+ bool ck_array_commit
+ (
+ ck_array_t *
+ array )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a26ea954415d851f4f3bbabfbb7986585.html b/c-api/ck-polyfill_8h_a26ea954415d851f4f3bbabfbb7986585.html
new file mode 100644
index 00000000..86d1e719
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a26ea954415d851f4f3bbabfbb7986585.html
@@ -0,0 +1,160 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_hs_get
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_hs_get()
+
+
+
+
+
+ void* ck_hs_get
+ (
+ ck_hs_t *
+ ,
+
+
+
+
+ unsigned long
+ ,
+
+
+
+
+ const void *
+
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a28e59bb30b5095d36bfa1a0b48c45b9a.html b/c-api/ck-polyfill_8h_a28e59bb30b5095d36bfa1a0b48c45b9a.html
new file mode 100644
index 00000000..51828946
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a28e59bb30b5095d36bfa1a0b48c45b9a.html
@@ -0,0 +1,144 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_pr_load_int
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_pr_load_int()
+
+
+
+
+
+ int ck_pr_load_int
+ (
+ const int *
+ target )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a2e2983144f65c418912eed2adcf2da58.html b/c-api/ck-polyfill_8h_a2e2983144f65c418912eed2adcf2da58.html
new file mode 100644
index 00000000..3308f35d
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a2e2983144f65c418912eed2adcf2da58.html
@@ -0,0 +1,160 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_hs_put
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_hs_put()
+
+
+
+
+
+ bool ck_hs_put
+ (
+ ck_hs_t *
+ ,
+
+
+
+
+ unsigned long
+ ,
+
+
+
+
+ const void *
+
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a305c00c891c6a0cfa2336614555c3a03.html b/c-api/ck-polyfill_8h_a305c00c891c6a0cfa2336614555c3a03.html
new file mode 100644
index 00000000..4032e729
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a305c00c891c6a0cfa2336614555c3a03.html
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_hs_t
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_hs_t
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a3433612a20a46ec64e1d4a20669c5286.html b/c-api/ck-polyfill_8h_a3433612a20a46ec64e1d4a20669c5286.html
new file mode 100644
index 00000000..f6ca02ba
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a3433612a20a46ec64e1d4a20669c5286.html
@@ -0,0 +1,154 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_pr_add_int
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_pr_add_int()
+
+
+
+
+
+ void ck_pr_add_int
+ (
+ int *
+ target ,
+
+
+
+
+ int
+ delta
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a3a1366376e0e716c87d495382ac849b2.html b/c-api/ck-polyfill_8h_a3a1366376e0e716c87d495382ac849b2.html
new file mode 100644
index 00000000..dc5dd73f
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a3a1366376e0e716c87d495382ac849b2.html
@@ -0,0 +1,160 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_pr_cas_8
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_pr_cas_8()
+
+
+
+
+
+ bool ck_pr_cas_8
+ (
+ uint8_t *
+ target ,
+
+
+
+
+ uint8_t
+ old_value ,
+
+
+
+
+ uint8_t
+ new_value
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a47a00e5eb380d974a4137832fcd7d3ec.html b/c-api/ck-polyfill_8h_a47a00e5eb380d974a4137832fcd7d3ec.html
new file mode 100644
index 00000000..f401a885
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a47a00e5eb380d974a4137832fcd7d3ec.html
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_array_t
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_array_t
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a4832fb45f6f3a3599e58f4e3b17e74c1.html b/c-api/ck-polyfill_8h_a4832fb45f6f3a3599e58f4e3b17e74c1.html
new file mode 100644
index 00000000..5bf2c491
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a4832fb45f6f3a3599e58f4e3b17e74c1.html
@@ -0,0 +1,154 @@
+
+
+
+
+
+
+
+Cyclone Scheme: simple_hashset_add
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ simple_hashset_add()
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a49a5ac795e54252e74e5bafce04e330c.html b/c-api/ck-polyfill_8h_a49a5ac795e54252e74e5bafce04e330c.html
new file mode 100644
index 00000000..46cc78a2
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a49a5ac795e54252e74e5bafce04e330c.html
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+Cyclone Scheme: hashmap_t
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ hashmap_t
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a4cfe0d449cb75178ced5f81b860bd54b.html b/c-api/ck-polyfill_8h_a4cfe0d449cb75178ced5f81b860bd54b.html
new file mode 100644
index 00000000..c4363ed3
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a4cfe0d449cb75178ced5f81b860bd54b.html
@@ -0,0 +1,154 @@
+
+
+
+
+
+
+
+Cyclone Scheme: simple_hashset_set_hash_function
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ simple_hashset_set_hash_function()
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a4e2dbefced04c76a62acd40d771929ac.html b/c-api/ck-polyfill_8h_a4e2dbefced04c76a62acd40d771929ac.html
new file mode 100644
index 00000000..1f217099
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a4e2dbefced04c76a62acd40d771929ac.html
@@ -0,0 +1,143 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_polyfill_init
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_polyfill_init()
+
+
+
+
+
+ void ck_polyfill_init
+ (
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a671b8af596454e3ecde5efa6c4a5594b.html b/c-api/ck-polyfill_8h_a671b8af596454e3ecde5efa6c4a5594b.html
new file mode 100644
index 00000000..72ff17e9
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a671b8af596454e3ecde5efa6c4a5594b.html
@@ -0,0 +1,160 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_pr_cas_int
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_pr_cas_int()
+
+
+
+
+
+ bool ck_pr_cas_int
+ (
+ int *
+ target ,
+
+
+
+
+ int
+ old_value ,
+
+
+
+
+ int
+ new_value
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a673811e3b2d3a93c8692c7330235c2ab.html b/c-api/ck-polyfill_8h_a673811e3b2d3a93c8692c7330235c2ab.html
new file mode 100644
index 00000000..5bbb73d3
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a673811e3b2d3a93c8692c7330235c2ab.html
@@ -0,0 +1,184 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_hs_init
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_hs_init()
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a7c93b0665c8d0bc728fc43a931a04ab6.html b/c-api/ck-polyfill_8h_a7c93b0665c8d0bc728fc43a931a04ab6.html
new file mode 100644
index 00000000..7b9319be
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a7c93b0665c8d0bc728fc43a931a04ab6.html
@@ -0,0 +1,160 @@
+
+
+
+
+
+
+
+Cyclone Scheme: CK_HS_HASH
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ CK_HS_HASH
+
+
+
+
+
+ #define CK_HS_HASH
+ (
+
+ hs,
+
+
+
+
+
+ hs_hash,
+
+
+
+
+
+ value
+
+
+
+ )
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a83b48316f14a1fdfa737099067756edd.html b/c-api/ck-polyfill_8h_a83b48316f14a1fdfa737099067756edd.html
new file mode 100644
index 00000000..b6f4bbc3
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a83b48316f14a1fdfa737099067756edd.html
@@ -0,0 +1,144 @@
+
+
+
+
+
+
+
+Cyclone Scheme: simple_hashset_create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ simple_hashset_create()
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a83ce0d2c2d40427b45c2b36e3b03ed68.html b/c-api/ck-polyfill_8h_a83ce0d2c2d40427b45c2b36e3b03ed68.html
new file mode 100644
index 00000000..9d3652f7
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a83ce0d2c2d40427b45c2b36e3b03ed68.html
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+Cyclone Scheme: CK_HS_MODE_OBJECT
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ CK_HS_MODE_OBJECT
+
+
+
+
+
+ #define CK_HS_MODE_OBJECT 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a899a2274482b4bff1aebe92125deb8f4.html b/c-api/ck-polyfill_8h_a899a2274482b4bff1aebe92125deb8f4.html
new file mode 100644
index 00000000..56c1a60f
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a899a2274482b4bff1aebe92125deb8f4.html
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+Cyclone Scheme: CK_HS_MODE_SPMC
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ CK_HS_MODE_SPMC
+
+
+
+
+
+ #define CK_HS_MODE_SPMC 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_a9dec8f58f705b645da93b7f14e26e7cf.html b/c-api/ck-polyfill_8h_a9dec8f58f705b645da93b7f14e26e7cf.html
new file mode 100644
index 00000000..31674fa2
--- /dev/null
+++ b/c-api/ck-polyfill_8h_a9dec8f58f705b645da93b7f14e26e7cf.html
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_hs_hash_cb_t
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_hs_hash_cb_t
+
+
+
+
+
+ typedef unsigned long ck_hs_hash_cb_t(const void *, unsigned long)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_aa41549465cd6f8d783af49d9d1202c3e.html b/c-api/ck-polyfill_8h_aa41549465cd6f8d783af49d9d1202c3e.html
new file mode 100644
index 00000000..cb3229a4
--- /dev/null
+++ b/c-api/ck-polyfill_8h_aa41549465cd6f8d783af49d9d1202c3e.html
@@ -0,0 +1,154 @@
+
+
+
+
+
+
+
+Cyclone Scheme: simple_hashset_is_member
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ simple_hashset_is_member()
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_aa5509327fe3eea5425e91af4d5b867a3.html b/c-api/ck-polyfill_8h_aa5509327fe3eea5425e91af4d5b867a3.html
new file mode 100644
index 00000000..5b06cfe7
--- /dev/null
+++ b/c-api/ck-polyfill_8h_aa5509327fe3eea5425e91af4d5b867a3.html
@@ -0,0 +1,144 @@
+
+
+
+
+
+
+
+Cyclone Scheme: simple_hashset_destroy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ simple_hashset_destroy()
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_aae25a4ae8f55a21072bb41b9d17a8669.html b/c-api/ck-polyfill_8h_aae25a4ae8f55a21072bb41b9d17a8669.html
new file mode 100644
index 00000000..f06547eb
--- /dev/null
+++ b/c-api/ck-polyfill_8h_aae25a4ae8f55a21072bb41b9d17a8669.html
@@ -0,0 +1,144 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_pr_load_ptr
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_pr_load_ptr()
+
+
+
+
+
+ void* ck_pr_load_ptr
+ (
+ const void *
+ target )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_ab1379ff7e5644b446bfc40da2df85889.html b/c-api/ck-polyfill_8h_ab1379ff7e5644b446bfc40da2df85889.html
new file mode 100644
index 00000000..3656544f
--- /dev/null
+++ b/c-api/ck-polyfill_8h_ab1379ff7e5644b446bfc40da2df85889.html
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+Cyclone Scheme: hash_func_t
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ hash_func_t
+
+
+
+
+
+ typedef size_t(* hash_func_t) (const char *, size_t)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_ab4b218c555f960bc8edc4f51e18c8d70.html b/c-api/ck-polyfill_8h_ab4b218c555f960bc8edc4f51e18c8d70.html
new file mode 100644
index 00000000..9a692a3d
--- /dev/null
+++ b/c-api/ck-polyfill_8h_ab4b218c555f960bc8edc4f51e18c8d70.html
@@ -0,0 +1,169 @@
+
+
+
+
+
+
+
+Cyclone Scheme: CK_ARRAY_FOREACH
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ CK_ARRAY_FOREACH
+
+
+
+
+
+ #define CK_ARRAY_FOREACH
+ (
+
+ a,
+
+
+
+
+
+ i,
+
+
+
+
+
+ b
+
+
+
+ )
+
+
+
+
+
Value: pthread_mutex_lock(&((a)->lock)); \
+
int tmpc = (a)->hs->nitems; \
+
void **tmp = alloca(sizeof (void *) * tmpc); \
+
hashset_to_array((a)->hs, tmp); \
+
pthread_mutex_unlock(&((a)->lock)); \
+
if (tmpc > 0) { (*b) = tmp[0]; } \
+
for (unsigned int _ck_i = 0; \
+
_ck_i < tmpc; \
+
_ck_i++, (*b) = tmp[_ck_i])
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_ad023e16214331cef937b1b186b720059.html b/c-api/ck-polyfill_8h_ad023e16214331cef937b1b186b720059.html
new file mode 100644
index 00000000..a9958cd3
--- /dev/null
+++ b/c-api/ck-polyfill_8h_ad023e16214331cef937b1b186b720059.html
@@ -0,0 +1,154 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_pr_add_ptr
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_pr_add_ptr()
+
+
+
+
+
+ void ck_pr_add_ptr
+ (
+ void *
+ target ,
+
+
+
+
+ uintptr_t
+ delta
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_ad2c2dcd2921c3a6668db44624438bd14.html b/c-api/ck-polyfill_8h_ad2c2dcd2921c3a6668db44624438bd14.html
new file mode 100644
index 00000000..869dc81f
--- /dev/null
+++ b/c-api/ck-polyfill_8h_ad2c2dcd2921c3a6668db44624438bd14.html
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_hs_compare_cb_t
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_hs_compare_cb_t
+
+
+
+
+
+ typedef bool ck_hs_compare_cb_t(const void *, const void *)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_ad63e02ca7a2489c49366070adcd8000e.html b/c-api/ck-polyfill_8h_ad63e02ca7a2489c49366070adcd8000e.html
new file mode 100644
index 00000000..43f1ecae
--- /dev/null
+++ b/c-api/ck-polyfill_8h_ad63e02ca7a2489c49366070adcd8000e.html
@@ -0,0 +1,154 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_pr_store_ptr
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_pr_store_ptr()
+
+
+
+
+
+ void ck_pr_store_ptr
+ (
+ void *
+ target ,
+
+
+
+
+ void *
+ value
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_addc29dc6be92892889bdfd1fbb0d8923.html b/c-api/ck-polyfill_8h_addc29dc6be92892889bdfd1fbb0d8923.html
new file mode 100644
index 00000000..6fe97592
--- /dev/null
+++ b/c-api/ck-polyfill_8h_addc29dc6be92892889bdfd1fbb0d8923.html
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+Cyclone Scheme: CK_ARRAY_MODE_SPMC
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ CK_ARRAY_MODE_SPMC
+
+
+
+
+
+ #define CK_ARRAY_MODE_SPMC 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_aea5604ed7f2b42b45ab3ba6eff013b6c.html b/c-api/ck-polyfill_8h_aea5604ed7f2b42b45ab3ba6eff013b6c.html
new file mode 100644
index 00000000..2d65e747
--- /dev/null
+++ b/c-api/ck-polyfill_8h_aea5604ed7f2b42b45ab3ba6eff013b6c.html
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_array_iterator_t
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_array_iterator_t
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_aea8b497a4b1073c064c005a54dda873f.html b/c-api/ck-polyfill_8h_aea8b497a4b1073c064c005a54dda873f.html
new file mode 100644
index 00000000..62f221eb
--- /dev/null
+++ b/c-api/ck-polyfill_8h_aea8b497a4b1073c064c005a54dda873f.html
@@ -0,0 +1,160 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_pr_cas_ptr
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_pr_cas_ptr()
+
+
+
+
+
+ bool ck_pr_cas_ptr
+ (
+ void *
+ target ,
+
+
+
+
+ void *
+ old_value ,
+
+
+
+
+ void *
+ new_value
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_af5fe42149e5a96c9b5f8f3feaac41d09.html b/c-api/ck-polyfill_8h_af5fe42149e5a96c9b5f8f3feaac41d09.html
new file mode 100644
index 00000000..bbdc89c8
--- /dev/null
+++ b/c-api/ck-polyfill_8h_af5fe42149e5a96c9b5f8f3feaac41d09.html
@@ -0,0 +1,154 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_array_put_unique
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_array_put_unique()
+
+
+
+
+
+ int ck_array_put_unique
+ (
+ ck_array_t *
+ array ,
+
+
+
+
+ void *
+ pointer
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_afa95fff55b9e0f3475652733ab09f5e5.html b/c-api/ck-polyfill_8h_afa95fff55b9e0f3475652733ab09f5e5.html
new file mode 100644
index 00000000..23c31682
--- /dev/null
+++ b/c-api/ck-polyfill_8h_afa95fff55b9e0f3475652733ab09f5e5.html
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+Cyclone Scheme: simple_hashset_t
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ simple_hashset_t
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_aff941011c123fa1044fc49a416153a3a.html b/c-api/ck-polyfill_8h_aff941011c123fa1044fc49a416153a3a.html
new file mode 100644
index 00000000..a7e50860
--- /dev/null
+++ b/c-api/ck-polyfill_8h_aff941011c123fa1044fc49a416153a3a.html
@@ -0,0 +1,144 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck_pr_load_8
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ ck_pr_load_8()
+
+
+
+
+
+ uint8_t ck_pr_load_8
+ (
+ const uint8_t *
+ target )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/ck-polyfill_8h_source.html b/c-api/ck-polyfill_8h_source.html
new file mode 100644
index 00000000..14652cda
--- /dev/null
+++ b/c-api/ck-polyfill_8h_source.html
@@ -0,0 +1,372 @@
+
+
+
+
+
+
+
+Cyclone Scheme: ck-polyfill.h Source File
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Go to the documentation of this file. 1 #ifndef CYCLONE_CK_POLYFILL_H
+
2 #define CYCLONE_CK_POLYFILL_H
+
+
+
+
+
+
+
+
+
+
12 void *(*malloc)(size_t);
+
13 void *(*realloc)(
void *, size_t, size_t, bool);
+
14 void (*
free )(
void *, size_t, bool);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
73 static inline uint64_t MurmurHash64A(
const void *key,
int len, uint64_t seed)
+
+
+
+
+
+
+
81 #define CK_HS_MODE_OBJECT 0
+
82 #define CK_HS_MODE_SPMC 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
101 #define CK_HS_HASH(hs, hs_hash, value) 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
136 #define CK_ARRAY_MODE_SPMC 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
154 struct ck_malloc *allocator,
unsigned int initial_length);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
203 #define CK_ARRAY_FOREACH(a, i, b) \
+
204 pthread_mutex_lock(&((a)->lock)); \
+
205 int tmpc = (a)->hs->nitems; \
+
206 void **tmp = alloca(sizeof(void *) * tmpc); \
+
207 hashset_to_array((a)->hs, tmp); \
+
208 pthread_mutex_unlock(&((a)->lock)); \
+
209 if (tmpc > 0) { (*b) = tmp[0]; } \
+
210 for (unsigned int _ck_i = 0; \
+
+
212 _ck_i++, (*b) = tmp[_ck_i])
+
+
+
+
217 ck_pr_cas_ptr (
void *target,
void *old_value,
void *new_value);
+
+
+
+
+
+
223 ck_pr_cas_8 (uint8_t *target, uint8_t old_value, uint8_t new_value);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+bool ck_pr_cas_int(int *target, int old_value, int new_value)
Definition: ck-polyfill.c:148
+void * ck_hs_get(ck_hs_t *, unsigned long, const void *)
Definition: ck-polyfill.c:41
+int simple_hashset_add(simple_hashset_t set, symbol_type *key)
Definition: ck-polyfill.c:352
+Definition: ck-polyfill.h:27
+
+bool ck_hs_put(ck_hs_t *, unsigned long, const void *)
Definition: ck-polyfill.c:58
+hashset_t hs
Definition: ck-polyfill.h:127
+int ck_array_put_unique(ck_array_t *array, void *pointer)
Definition: ck-polyfill.c:102
+size_t nbits
Definition: ck-polyfill.h:28
+int simple_hashset_is_member(simple_hashset_t set, symbol_type *key)
Definition: ck-polyfill.c:361
+void ck_polyfill_init()
Definition: ck-polyfill.c:20
+void ck_pr_add_ptr(void *target, uintptr_t delta)
Definition: ck-polyfill.c:186
+Definition: ck-polyfill.h:84
+size_t capacity
Definition: ck-polyfill.h:31
+bool ck_hs_init(ck_hs_t *, unsigned int, ck_hs_hash_cb_t *, ck_hs_compare_cb_t *, struct ck_malloc *, unsigned long, unsigned long)
Definition: ck-polyfill.c:30
+void * ck_pr_load_ptr(const void *target)
Definition: ck-polyfill.c:214
+struct simple_hashset_st * simple_hashset_t
Definition: ck-polyfill.h:39
+size_t(* hash_func_t)(const char *, size_t)
Definition: ck-polyfill.h:20
+
+void simple_hashset_set_hash_function(simple_hashset_t set, hash_func_t func)
Definition: ck-polyfill.c:294
+
+size_t mask
Definition: ck-polyfill.h:29
+size_t n_deleted_items
Definition: ck-polyfill.h:34
+simple_hashset_t hs
Definition: ck-polyfill.h:86
+void ck_pr_store_ptr(void *target, void *value)
Definition: ck-polyfill.c:243
+size_t nitems
Definition: ck-polyfill.h:33
+bool ck_array_init(ck_array_t *array, unsigned int mode, struct ck_malloc *allocator, unsigned int initial_length)
Definition: ck-polyfill.c:77
+struct simple_hashset_item_st * items
Definition: ck-polyfill.h:32
+Definition: ck-polyfill.h:131
+Symbols are similar to strings, but only one instance of each unique symbol is created,...
Definition: types.h:788
+struct hashmap_st * hashmap_t
Definition: ck-polyfill.h:43
+Definition: ck-polyfill.h:125
+bool ck_array_commit(ck_array_t *array)
Definition: ck-polyfill.c:138
+bool ck_pr_cas_ptr(void *target, void *old_value, void *new_value)
Definition: ck-polyfill.c:160
+hash_func_t hash_func
Definition: ck-polyfill.h:36
+void ck_pr_add_8(uint8_t *target, uint8_t delta)
Definition: ck-polyfill.c:206
+void ck_pr_add_int(int *target, int delta)
Definition: ck-polyfill.c:198
+bool ck_hs_compare_cb_t(const void *, const void *)
Definition: ck-polyfill.h:99
+int unused
Definition: ck-polyfill.h:132
+bool ck_pr_cas_8(uint8_t *target, uint8_t old_value, uint8_t new_value)
Definition: ck-polyfill.c:173
+pthread_mutex_t lock
Definition: ck-polyfill.h:126
+pthread_mutex_t lock
Definition: ck-polyfill.h:85
+symbol_type * item
Definition: ck-polyfill.h:24
+bool ck_array_remove(ck_array_t *array, void *pointer)
Definition: ck-polyfill.c:122
+int ck_pr_load_int(const int *target)
Definition: ck-polyfill.c:224
+void simple_hashset_destroy(simple_hashset_t set)
Definition: ck-polyfill.c:286
+Definition: ck-polyfill.h:22
+Definition: ck-polyfill.h:11
+simple_hashset_t simple_hashset_create(void)
Definition: ck-polyfill.c:264
+unsigned long ck_hs_hash_cb_t(const void *, unsigned long)
Definition: ck-polyfill.h:94
+uint8_t ck_pr_load_8(const uint8_t *target)
Definition: ck-polyfill.c:234
+size_t hash
Definition: ck-polyfill.h:23
+void(* free)(void *, size_t, bool)
Definition: ck-polyfill.h:14
+
+
+
+
diff --git a/c-api/classes.html b/c-api/classes.html
index 5296e11b..6fba205d 100644
--- a/c-api/classes.html
+++ b/c-api/classes.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Data Structure Index
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -67,30 +70,86 @@ $(function() {
@@ -99,7 +158,7 @@ $(function() {
diff --git a/c-api/dir_a04717fef2f0750416dad9707145cc4b.html b/c-api/dir_a04717fef2f0750416dad9707145cc4b.html
index 6ac94f70..a1627e6d 100644
--- a/c-api/dir_a04717fef2f0750416dad9707145cc4b.html
+++ b/c-api/dir_a04717fef2f0750416dad9707145cc4b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: include/cyclone Directory Reference
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/dir_d44c64559bbebec7f509842c48db8b23.html b/c-api/dir_d44c64559bbebec7f509842c48db8b23.html
index 6d9799fe..04c35871 100644
--- a/c-api/dir_d44c64559bbebec7f509842c48db8b23.html
+++ b/c-api/dir_d44c64559bbebec7f509842c48db8b23.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: include Directory Reference
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/doxygen.css b/c-api/doxygen.css
index 4f1ab919..73ecbb2c 100644
--- a/c-api/doxygen.css
+++ b/c-api/doxygen.css
@@ -1,4 +1,4 @@
-/* The standard CSS for doxygen 1.8.13 */
+/* The standard CSS for doxygen 1.8.17 */
body, table, div, p, dl {
font: 400 14px/22px Roboto,sans-serif;
@@ -53,17 +53,24 @@ dt {
font-weight: bold;
}
-div.multicol {
+ul.multicol {
-moz-column-gap: 1em;
-webkit-column-gap: 1em;
+ column-gap: 1em;
-moz-column-count: 3;
-webkit-column-count: 3;
+ column-count: 3;
}
p.startli, p.startdd {
margin-top: 2px;
}
+th p.starttd, p.intertd, p.endtd {
+ font-size: 100%;
+ font-weight: 700;
+}
+
p.starttd {
margin-top: 0px;
}
@@ -80,6 +87,15 @@ p.endtd {
margin-bottom: 2px;
}
+p.interli {
+}
+
+p.interdd {
+}
+
+p.intertd {
+}
+
/* @end */
caption {
@@ -134,12 +150,12 @@ a.qindex {
a.qindexHL {
font-weight: bold;
background-color: #9CAFD4;
- color: #ffffff;
+ color: #FFFFFF;
border: 1px double #869DCA;
}
.contents a.qindexHL:visited {
- color: #ffffff;
+ color: #FFFFFF;
}
a.el {
@@ -163,6 +179,25 @@ dl.el {
margin-left: -1cm;
}
+ul {
+ overflow: hidden; /*Fixed: list item bullets overlap floating elements*/
+}
+
+#side-nav ul {
+ overflow: visible; /* reset ul rule for scroll bar in GENERATE_TREEVIEW window */
+}
+
+#main-nav ul {
+ overflow: visible; /* reset ul rule for the navigation bar drop down lists */
+}
+
+.fragment {
+ text-align: left;
+ direction: ltr;
+ overflow-x: auto; /*Fixed: fragment lines overlap floating elements*/
+ overflow-y: hidden;
+}
+
pre.fragment {
border: 1px solid #C4CFE5;
background-color: #FBFCFD;
@@ -177,8 +212,8 @@ pre.fragment {
}
div.fragment {
- padding: 0px;
- margin: 4px 8px 4px 2px;
+ padding: 0 0 1px 0; /*Fixed: last line underline overlap border*/
+ margin: 4px 8px 4px 2px;
background-color: #FBFCFD;
border: 1px solid #C4CFE5;
}
@@ -248,7 +283,7 @@ span.lineno a:hover {
div.ah, span.ah {
background-color: black;
font-weight: bold;
- color: #ffffff;
+ color: #FFFFFF;
margin-bottom: 3px;
margin-top: 3px;
padding: 0.2em;
@@ -324,7 +359,7 @@ img.formulaDsp {
}
-img.formulaInl {
+img.formulaInl, img.inline {
vertical-align: middle;
}
@@ -402,6 +437,13 @@ blockquote {
padding: 0 12px 0 16px;
}
+blockquote.DocNodeRTL {
+ border-left: 0;
+ border-right: 2px solid #9CAFD4;
+ margin: 0 4px 0 24px;
+ padding: 0 16px 0 12px;
+}
+
/* @end */
/*
@@ -498,7 +540,7 @@ table.memberdecls {
white-space: nowrap;
}
-.memItemRight {
+.memItemRight, .memTemplItemRight {
width: 100%;
}
@@ -666,17 +708,17 @@ dl.reflist dd {
padding-left: 0px;
}
-.params .paramname, .retval .paramname {
+.params .paramname, .retval .paramname, .tparams .paramname, .exception .paramname {
font-weight: bold;
vertical-align: top;
}
-.params .paramtype {
+.params .paramtype, .tparams .paramtype {
font-style: italic;
vertical-align: top;
}
-.params .paramdir {
+.params .paramdir, .tparams .paramdir {
font-family: "courier new",courier,monospace;
vertical-align: top;
}
@@ -1081,72 +1123,143 @@ div.headertitle
padding: 5px 5px 5px 10px;
}
-dl
-{
- padding: 0 0 0 10px;
+.PageDocRTL-title div.headertitle {
+ text-align: right;
+ direction: rtl;
}
-/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */
-dl.section
-{
+dl {
+ padding: 0 0 0 0;
+}
+
+/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug, dl.examples */
+dl.section {
margin-left: 0px;
padding-left: 0px;
}
-dl.note
-{
- margin-left:-7px;
- padding-left: 3px;
- border-left:4px solid;
- border-color: #D0C000;
+dl.section.DocNodeRTL {
+ margin-right: 0px;
+ padding-right: 0px;
}
-dl.warning, dl.attention
-{
- margin-left:-7px;
- padding-left: 3px;
- border-left:4px solid;
- border-color: #FF0000;
+dl.note {
+ margin-left: -7px;
+ padding-left: 3px;
+ border-left: 4px solid;
+ border-color: #D0C000;
}
-dl.pre, dl.post, dl.invariant
-{
- margin-left:-7px;
- padding-left: 3px;
- border-left:4px solid;
- border-color: #00D000;
+dl.note.DocNodeRTL {
+ margin-left: 0;
+ padding-left: 0;
+ border-left: 0;
+ margin-right: -7px;
+ padding-right: 3px;
+ border-right: 4px solid;
+ border-color: #D0C000;
}
-dl.deprecated
-{
- margin-left:-7px;
- padding-left: 3px;
- border-left:4px solid;
- border-color: #505050;
+dl.warning, dl.attention {
+ margin-left: -7px;
+ padding-left: 3px;
+ border-left: 4px solid;
+ border-color: #FF0000;
}
-dl.todo
-{
- margin-left:-7px;
- padding-left: 3px;
- border-left:4px solid;
- border-color: #00C0E0;
+dl.warning.DocNodeRTL, dl.attention.DocNodeRTL {
+ margin-left: 0;
+ padding-left: 0;
+ border-left: 0;
+ margin-right: -7px;
+ padding-right: 3px;
+ border-right: 4px solid;
+ border-color: #FF0000;
}
-dl.test
-{
- margin-left:-7px;
- padding-left: 3px;
- border-left:4px solid;
- border-color: #3030E0;
+dl.pre, dl.post, dl.invariant {
+ margin-left: -7px;
+ padding-left: 3px;
+ border-left: 4px solid;
+ border-color: #00D000;
}
-dl.bug
-{
- margin-left:-7px;
- padding-left: 3px;
- border-left:4px solid;
- border-color: #C08050;
+dl.pre.DocNodeRTL, dl.post.DocNodeRTL, dl.invariant.DocNodeRTL {
+ margin-left: 0;
+ padding-left: 0;
+ border-left: 0;
+ margin-right: -7px;
+ padding-right: 3px;
+ border-right: 4px solid;
+ border-color: #00D000;
+}
+
+dl.deprecated {
+ margin-left: -7px;
+ padding-left: 3px;
+ border-left: 4px solid;
+ border-color: #505050;
+}
+
+dl.deprecated.DocNodeRTL {
+ margin-left: 0;
+ padding-left: 0;
+ border-left: 0;
+ margin-right: -7px;
+ padding-right: 3px;
+ border-right: 4px solid;
+ border-color: #505050;
+}
+
+dl.todo {
+ margin-left: -7px;
+ padding-left: 3px;
+ border-left: 4px solid;
+ border-color: #00C0E0;
+}
+
+dl.todo.DocNodeRTL {
+ margin-left: 0;
+ padding-left: 0;
+ border-left: 0;
+ margin-right: -7px;
+ padding-right: 3px;
+ border-right: 4px solid;
+ border-color: #00C0E0;
+}
+
+dl.test {
+ margin-left: -7px;
+ padding-left: 3px;
+ border-left: 4px solid;
+ border-color: #3030E0;
+}
+
+dl.test.DocNodeRTL {
+ margin-left: 0;
+ padding-left: 0;
+ border-left: 0;
+ margin-right: -7px;
+ padding-right: 3px;
+ border-right: 4px solid;
+ border-color: #3030E0;
+}
+
+dl.bug {
+ margin-left: -7px;
+ padding-left: 3px;
+ border-left: 4px solid;
+ border-color: #C08050;
+}
+
+dl.bug.DocNodeRTL {
+ margin-left: 0;
+ padding-left: 0;
+ border-left: 0;
+ margin-right: -7px;
+ padding-right: 3px;
+ border-right: 4px solid;
+ border-color: #C08050;
}
dl.section dd {
@@ -1263,6 +1376,11 @@ div.toc {
width: 200px;
}
+.PageDocRTL-title div.toc {
+ float: left !important;
+ text-align: right;
+}
+
div.toc li {
background: url("bdwn.png") no-repeat scroll 0 5px transparent;
font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif;
@@ -1271,6 +1389,12 @@ div.toc li {
padding-top: 2px;
}
+.PageDocRTL-title div.toc li {
+ background-position-x: right !important;
+ padding-left: 0 !important;
+ padding-right: 10px;
+}
+
div.toc h3 {
font: bold 12px/1.2 Arial,FreeSans,sans-serif;
color: #4665A2;
@@ -1300,6 +1424,26 @@ div.toc li.level4 {
margin-left: 45px;
}
+.PageDocRTL-title div.toc li.level1 {
+ margin-left: 0 !important;
+ margin-right: 0;
+}
+
+.PageDocRTL-title div.toc li.level2 {
+ margin-left: 0 !important;
+ margin-right: 15px;
+}
+
+.PageDocRTL-title div.toc li.level3 {
+ margin-left: 0 !important;
+ margin-right: 30px;
+}
+
+.PageDocRTL-title div.toc li.level4 {
+ margin-left: 0 !important;
+ margin-right: 45px;
+}
+
.inherit_header {
font-weight: bold;
color: gray;
@@ -1413,7 +1557,7 @@ tr.heading h2 {
}
#powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after {
- border-top-color: #ffffff;
+ border-top-color: #FFFFFF;
border-width: 10px;
margin: 0px -10px;
}
@@ -1441,7 +1585,7 @@ tr.heading h2 {
}
#powerTip.s:after, #powerTip.se:after, #powerTip.sw:after {
- border-bottom-color: #ffffff;
+ border-bottom-color: #FFFFFF;
border-width: 10px;
margin: 0px -10px;
}
@@ -1468,7 +1612,7 @@ tr.heading h2 {
left: 100%;
}
#powerTip.e:after {
- border-left-color: #ffffff;
+ border-left-color: #FFFFFF;
border-width: 10px;
top: 50%;
margin-top: -10px;
@@ -1484,7 +1628,7 @@ tr.heading h2 {
right: 100%;
}
#powerTip.w:after {
- border-right-color: #ffffff;
+ border-right-color: #FFFFFF;
border-width: 10px;
top: 50%;
margin-top: -10px;
@@ -1592,5 +1736,36 @@ th.markdownTableHeadCenter, td.markdownTableBodyCenter {
text-align: center
}
+.DocNodeRTL {
+ text-align: right;
+ direction: rtl;
+}
+.DocNodeLTR {
+ text-align: left;
+ direction: ltr;
+}
+
+table.DocNodeRTL {
+ width: auto;
+ margin-right: 0;
+ margin-left: auto;
+}
+
+table.DocNodeLTR {
+ width: auto;
+ margin-right: auto;
+ margin-left: 0;
+}
+
+tt, code, kbd, samp
+{
+ display: inline-block;
+ direction:ltr;
+}
/* @end */
+
+u {
+ text-decoration: underline;
+}
+
diff --git a/c-api/dynsections.js b/c-api/dynsections.js
index 85e18369..ea0a7b39 100644
--- a/c-api/dynsections.js
+++ b/c-api/dynsections.js
@@ -1,3 +1,26 @@
+/*
+ @licstart The following is the entire license notice for the
+ JavaScript code in this file.
+
+ Copyright (C) 1997-2017 by Dimitri van Heesch
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along
+ with this program; if not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+ @licend The above is the entire license notice
+ for the JavaScript code in this file
+ */
function toggleVisibility(linkObj)
{
var base = $(linkObj).attr('id');
@@ -15,7 +38,7 @@ function toggleVisibility(linkObj)
summary.hide();
$(linkObj).removeClass('closed').addClass('opened');
$(trigger).attr('src',src.substring(0,src.length-10)+'open.png');
- }
+ }
return false;
}
@@ -94,4 +117,4 @@ function toggleInherit(id)
$(img).attr('src',src.substring(0,src.length-10)+'open.png');
}
}
-
+/* @license-end */
diff --git a/c-api/ffi_8c.html b/c-api/ffi_8c.html
index 4264e4c2..1b33ea2e 100644
--- a/c-api/ffi_8c.html
+++ b/c-api/ffi_8c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: ffi.c File Reference
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/ffi_8c_ac8494c63ec9cf9412c59a1962badc7f8.html b/c-api/ffi_8c_ac8494c63ec9cf9412c59a1962badc7f8.html
index 4c097afb..a26a7bdc 100644
--- a/c-api/ffi_8c_ac8494c63ec9cf9412c59a1962badc7f8.html
+++ b/c-api/ffi_8c_ac8494c63ec9cf9412c59a1962badc7f8.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_init_thread
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/files.html b/c-api/files.html
index 5c5384d9..51633fb6 100644
--- a/c-api/files.html
+++ b/c-api/files.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: File List
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -71,14 +74,13 @@ $(function() {
hashset.h
runtime.h
types.h
- anon.c
- ffi.c
- gc.c
- hashset.c
- mstreams.c
- runtime.c
- test.c
- tests.c
+ ck-polyfill.c
+ ck-polyfill.h
+ ffi.c
+ gc.c
+ hashset.c
+ mstreams.c
+ runtime.c
@@ -86,7 +88,7 @@ $(function() {
diff --git a/c-api/functions.html b/c-api/functions.html
index bb12e371..1bd15e0f 100644
--- a/c-api/functions.html
+++ b/c-api/functions.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Data Fields
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -75,489 +78,12 @@ $(function() {
, vector_5_type
-
-
- - b -
-
-
- - c -
-
-
- - d -
-
-
- - e -
-
-
- - f -
-
-
- - g -
-
-
- - h -
-hdr
-: atomic_type
-, bignum_type
-, boolean_type
-, bytevector_type
-, c_opaque_type
-, closure0_type
-, closure1_type
-, closureN_type
-, complex_num_type
-, cond_var_type
-, cvar_type
-, double_type
-, integer_type
-, macro_type
-, mutex_type
-, pair_type
-, port_type
-, primitive_type
-, string_type
-, symbol_type
-, vector_type
-
-heap
-: gc_heap_root_t
-, gc_thread_data_t
-
-heap_num_huge_allocations
-: gc_thread_data_t
-
-
-
-
- - i -
-
-
- - j -
-
-
- - l -
-
-
- - m -
-
-
- - n -
-
-
- - o -
-
-
- - p -
-
-
- - r -
-
-
- - s -
-
-
- - t -
-tag
-: atomic_type
-, bignum_type
-, boolean_type
-, bytevector_type
-, c_opaque_type
-, closure0_type
-, closure1_type
-, closureN_type
-, complex_num_type
-, cond_var_type
-, cvar_type
-, double_type
-, integer_type
-, macro_type
-, mutex_type
-, pair_type
-, port_type
-, primitive_type
-, string_type
-, symbol_type
-, vector_type
-
-thread_id
-: gc_thread_data_t
-
-thread_state
-: gc_thread_data_t
-
-tok_buf
-: port_type
-
-tok_buf_len
-: port_type
-
-tok_end
-: port_type
-
-tok_start
-: port_type
-
-ttl
-: gc_heap_t
-
-type
-: gc_heap_t
-
-
-
-
- - u -
-
-
- - v -
diff --git a/c-api/functions_b.html b/c-api/functions_b.html
new file mode 100644
index 00000000..77888a90
--- /dev/null
+++ b/c-api/functions_b.html
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Here is a list of all struct and union fields with links to the structures/unions they belong to:
+
+
- b -
+
+
+
+
+
diff --git a/c-api/functions_c.html b/c-api/functions_c.html
new file mode 100644
index 00000000..f6db9ee1
--- /dev/null
+++ b/c-api/functions_c.html
@@ -0,0 +1,107 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Here is a list of all struct and union fields with links to the structures/unions they belong to:
+
+
- c -
+
+
+
+
+
diff --git a/c-api/functions_d.html b/c-api/functions_d.html
new file mode 100644
index 00000000..828b6fb8
--- /dev/null
+++ b/c-api/functions_d.html
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Here is a list of all struct and union fields with links to the structures/unions they belong to:
+
+
- d -
+
+
+
+
+
diff --git a/c-api/functions_e.html b/c-api/functions_e.html
new file mode 100644
index 00000000..ea30ef9d
--- /dev/null
+++ b/c-api/functions_e.html
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Here is a list of all struct and union fields with links to the structures/unions they belong to:
+
+
- e -
+
+
+
+
+
diff --git a/c-api/functions_f.html b/c-api/functions_f.html
new file mode 100644
index 00000000..fe834068
--- /dev/null
+++ b/c-api/functions_f.html
@@ -0,0 +1,100 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Here is a list of all struct and union fields with links to the structures/unions they belong to:
+
+
- f -
+
+
+
+
+
diff --git a/c-api/functions_g.html b/c-api/functions_g.html
new file mode 100644
index 00000000..5a62fca6
--- /dev/null
+++ b/c-api/functions_g.html
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Here is a list of all struct and union fields with links to the structures/unions they belong to:
+
+
- g -
+
+
+
+
+
diff --git a/c-api/functions_h.html b/c-api/functions_h.html
new file mode 100644
index 00000000..08ba91c2
--- /dev/null
+++ b/c-api/functions_h.html
@@ -0,0 +1,118 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Here is a list of all struct and union fields with links to the structures/unions they belong to:
+
+
- h -
+hash
+: simple_hashset_item_st
+
+hash_func
+: simple_hashset_st
+
+hdr
+: atomic_type
+, bignum_type
+, boolean_type
+, bytevector_type
+, c_opaque_type
+, closure0_type
+, closure1_type
+, closureN_type
+, complex_num_type
+, cond_var_type
+, cvar_type
+, double_type
+, integer_type
+, macro_type
+, mutex_type
+, pair_type
+, port_type
+, primitive_type
+, string_type
+, symbol_type
+, vector_type
+
+heap
+: gc_heap_root_t
+, gc_thread_data_t
+
+heap_num_huge_allocations
+: gc_thread_data_t
+
+hs
+: ck_array
+, ck_hs
+
+
+
+
+
+
+
diff --git a/c-api/functions_i.html b/c-api/functions_i.html
new file mode 100644
index 00000000..02f0b59f
--- /dev/null
+++ b/c-api/functions_i.html
@@ -0,0 +1,97 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Here is a list of all struct and union fields with links to the structures/unions they belong to:
+
+
- i -
+
+
+
+
+
diff --git a/c-api/functions_j.html b/c-api/functions_j.html
new file mode 100644
index 00000000..a72524ef
--- /dev/null
+++ b/c-api/functions_j.html
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Here is a list of all struct and union fields with links to the structures/unions they belong to:
+
+
- j -
+
+
+
+
+
diff --git a/c-api/functions_l.html b/c-api/functions_l.html
new file mode 100644
index 00000000..1f1dfa88
--- /dev/null
+++ b/c-api/functions_l.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Here is a list of all struct and union fields with links to the structures/unions they belong to:
+
+
- l -
+
+
+
+
+
diff --git a/c-api/functions_m.html b/c-api/functions_m.html
new file mode 100644
index 00000000..8eac4543
--- /dev/null
+++ b/c-api/functions_m.html
@@ -0,0 +1,118 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Here is a list of all struct and union fields with links to the structures/unions they belong to:
+
+
- m -
+
+
+
+
+
diff --git a/c-api/functions_n.html b/c-api/functions_n.html
new file mode 100644
index 00000000..12b1dd81
--- /dev/null
+++ b/c-api/functions_n.html
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Here is a list of all struct and union fields with links to the structures/unions they belong to:
+
+
- n -
+
+
+
+
+
diff --git a/c-api/functions_o.html b/c-api/functions_o.html
new file mode 100644
index 00000000..f0c5c4a0
--- /dev/null
+++ b/c-api/functions_o.html
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Here is a list of all struct and union fields with links to the structures/unions they belong to:
+
+
- o -
+
+
+
+
+
diff --git a/c-api/functions_p.html b/c-api/functions_p.html
new file mode 100644
index 00000000..932bc2c7
--- /dev/null
+++ b/c-api/functions_p.html
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Here is a list of all struct and union fields with links to the structures/unions they belong to:
+
+
- p -
+
+
+
+
+
diff --git a/c-api/functions_r.html b/c-api/functions_r.html
new file mode 100644
index 00000000..d64c2e7a
--- /dev/null
+++ b/c-api/functions_r.html
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Here is a list of all struct and union fields with links to the structures/unions they belong to:
+
+
- r -
+
+
+
+
+
diff --git a/c-api/functions_s.html b/c-api/functions_s.html
new file mode 100644
index 00000000..8bcb65ab
--- /dev/null
+++ b/c-api/functions_s.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Here is a list of all struct and union fields with links to the structures/unions they belong to:
+
+
- s -
+
+
+
+
+
diff --git a/c-api/functions_t.html b/c-api/functions_t.html
new file mode 100644
index 00000000..80d9cc87
--- /dev/null
+++ b/c-api/functions_t.html
@@ -0,0 +1,125 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Here is a list of all struct and union fields with links to the structures/unions they belong to:
+
+
- t -
+tag
+: atomic_type
+, bignum_type
+, boolean_type
+, bytevector_type
+, c_opaque_type
+, closure0_type
+, closure1_type
+, closureN_type
+, complex_num_type
+, cond_var_type
+, cvar_type
+, double_type
+, integer_type
+, macro_type
+, mutex_type
+, pair_type
+, port_type
+, primitive_type
+, string_type
+, symbol_type
+, vector_type
+
+thread_id
+: gc_thread_data_t
+
+thread_state
+: gc_thread_data_t
+
+tok_buf
+: port_type
+
+tok_buf_len
+: port_type
+
+tok_end
+: port_type
+
+tok_start
+: port_type
+
+ttl
+: gc_heap_t
+
+type
+: gc_heap_t
+
+
+
+
+
+
+
diff --git a/c-api/functions_u.html b/c-api/functions_u.html
new file mode 100644
index 00000000..e2011f84
--- /dev/null
+++ b/c-api/functions_u.html
@@ -0,0 +1,82 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Here is a list of all struct and union fields with links to the structures/unions they belong to:
+
+
- u -
+
+
+
+
+
diff --git a/c-api/functions_v.html b/c-api/functions_v.html
new file mode 100644
index 00000000..5d622ce5
--- /dev/null
+++ b/c-api/functions_v.html
@@ -0,0 +1,89 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Here is a list of all struct and union fields with links to the structures/unions they belong to:
+
+
- v -
+
+
+
+
+
diff --git a/c-api/functions_vars.html b/c-api/functions_vars.html
index bde095b0..6df40e36 100644
--- a/c-api/functions_vars.html
+++ b/c-api/functions_vars.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Data Fields - Variables
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -75,489 +78,12 @@ $(function() {
, vector_5_type
-
-
- - b -
-
-
- - c -
-
-
- - d -
-
-
- - e -
-
-
- - f -
-
-
- - g -
-
-
- - h -
-hdr
-: atomic_type
-, bignum_type
-, boolean_type
-, bytevector_type
-, c_opaque_type
-, closure0_type
-, closure1_type
-, closureN_type
-, complex_num_type
-, cond_var_type
-, cvar_type
-, double_type
-, integer_type
-, macro_type
-, mutex_type
-, pair_type
-, port_type
-, primitive_type
-, string_type
-, symbol_type
-, vector_type
-
-heap
-: gc_heap_root_t
-, gc_thread_data_t
-
-heap_num_huge_allocations
-: gc_thread_data_t
-
-
-
-
- - i -
-
-
- - j -
-
-
- - l -
-
-
- - m -
-
-
- - n -
-
-
- - o -
-
-
- - p -
-
-
- - r -
-
-
- - s -
-
-
- - t -
-tag
-: atomic_type
-, bignum_type
-, boolean_type
-, bytevector_type
-, c_opaque_type
-, closure0_type
-, closure1_type
-, closureN_type
-, complex_num_type
-, cond_var_type
-, cvar_type
-, double_type
-, integer_type
-, macro_type
-, mutex_type
-, pair_type
-, port_type
-, primitive_type
-, string_type
-, symbol_type
-, vector_type
-
-thread_id
-: gc_thread_data_t
-
-thread_state
-: gc_thread_data_t
-
-tok_buf
-: port_type
-
-tok_buf_len
-: port_type
-
-tok_end
-: port_type
-
-tok_start
-: port_type
-
-ttl
-: gc_heap_t
-
-type
-: gc_heap_t
-
-
-
-
- - u -
-
-
- - v -
diff --git a/c-api/functions_vars_b.html b/c-api/functions_vars_b.html
new file mode 100644
index 00000000..377ac115
--- /dev/null
+++ b/c-api/functions_vars_b.html
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields - Variables
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/functions_vars_c.html b/c-api/functions_vars_c.html
new file mode 100644
index 00000000..047190a8
--- /dev/null
+++ b/c-api/functions_vars_c.html
@@ -0,0 +1,107 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields - Variables
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/functions_vars_d.html b/c-api/functions_vars_d.html
new file mode 100644
index 00000000..72c5c22d
--- /dev/null
+++ b/c-api/functions_vars_d.html
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields - Variables
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/functions_vars_e.html b/c-api/functions_vars_e.html
new file mode 100644
index 00000000..647bd009
--- /dev/null
+++ b/c-api/functions_vars_e.html
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields - Variables
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/functions_vars_f.html b/c-api/functions_vars_f.html
new file mode 100644
index 00000000..ce244765
--- /dev/null
+++ b/c-api/functions_vars_f.html
@@ -0,0 +1,100 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields - Variables
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/functions_vars_g.html b/c-api/functions_vars_g.html
new file mode 100644
index 00000000..c288a819
--- /dev/null
+++ b/c-api/functions_vars_g.html
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields - Variables
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/functions_vars_h.html b/c-api/functions_vars_h.html
new file mode 100644
index 00000000..6a96f31e
--- /dev/null
+++ b/c-api/functions_vars_h.html
@@ -0,0 +1,118 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields - Variables
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- h -
+hash
+: simple_hashset_item_st
+
+hash_func
+: simple_hashset_st
+
+hdr
+: atomic_type
+, bignum_type
+, boolean_type
+, bytevector_type
+, c_opaque_type
+, closure0_type
+, closure1_type
+, closureN_type
+, complex_num_type
+, cond_var_type
+, cvar_type
+, double_type
+, integer_type
+, macro_type
+, mutex_type
+, pair_type
+, port_type
+, primitive_type
+, string_type
+, symbol_type
+, vector_type
+
+heap
+: gc_heap_root_t
+, gc_thread_data_t
+
+heap_num_huge_allocations
+: gc_thread_data_t
+
+hs
+: ck_array
+, ck_hs
+
+
+
+
+
+
+
diff --git a/c-api/functions_vars_i.html b/c-api/functions_vars_i.html
new file mode 100644
index 00000000..c5a5956f
--- /dev/null
+++ b/c-api/functions_vars_i.html
@@ -0,0 +1,97 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields - Variables
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/functions_vars_j.html b/c-api/functions_vars_j.html
new file mode 100644
index 00000000..3e886b8e
--- /dev/null
+++ b/c-api/functions_vars_j.html
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields - Variables
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/functions_vars_l.html b/c-api/functions_vars_l.html
new file mode 100644
index 00000000..2416b9a1
--- /dev/null
+++ b/c-api/functions_vars_l.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields - Variables
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/functions_vars_m.html b/c-api/functions_vars_m.html
new file mode 100644
index 00000000..7728de65
--- /dev/null
+++ b/c-api/functions_vars_m.html
@@ -0,0 +1,118 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields - Variables
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/functions_vars_n.html b/c-api/functions_vars_n.html
new file mode 100644
index 00000000..6cb4ab69
--- /dev/null
+++ b/c-api/functions_vars_n.html
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields - Variables
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/functions_vars_o.html b/c-api/functions_vars_o.html
new file mode 100644
index 00000000..0f898c4f
--- /dev/null
+++ b/c-api/functions_vars_o.html
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields - Variables
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/functions_vars_p.html b/c-api/functions_vars_p.html
new file mode 100644
index 00000000..b80c5eae
--- /dev/null
+++ b/c-api/functions_vars_p.html
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields - Variables
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/functions_vars_r.html b/c-api/functions_vars_r.html
new file mode 100644
index 00000000..f7c8c9cc
--- /dev/null
+++ b/c-api/functions_vars_r.html
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields - Variables
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/functions_vars_s.html b/c-api/functions_vars_s.html
new file mode 100644
index 00000000..7680885a
--- /dev/null
+++ b/c-api/functions_vars_s.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields - Variables
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/functions_vars_t.html b/c-api/functions_vars_t.html
new file mode 100644
index 00000000..90ff807d
--- /dev/null
+++ b/c-api/functions_vars_t.html
@@ -0,0 +1,125 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields - Variables
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- t -
+tag
+: atomic_type
+, bignum_type
+, boolean_type
+, bytevector_type
+, c_opaque_type
+, closure0_type
+, closure1_type
+, closureN_type
+, complex_num_type
+, cond_var_type
+, cvar_type
+, double_type
+, integer_type
+, macro_type
+, mutex_type
+, pair_type
+, port_type
+, primitive_type
+, string_type
+, symbol_type
+, vector_type
+
+thread_id
+: gc_thread_data_t
+
+thread_state
+: gc_thread_data_t
+
+tok_buf
+: port_type
+
+tok_buf_len
+: port_type
+
+tok_end
+: port_type
+
+tok_start
+: port_type
+
+ttl
+: gc_heap_t
+
+type
+: gc_heap_t
+
+
+
+
+
+
+
diff --git a/c-api/functions_vars_u.html b/c-api/functions_vars_u.html
new file mode 100644
index 00000000..f84028e4
--- /dev/null
+++ b/c-api/functions_vars_u.html
@@ -0,0 +1,82 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields - Variables
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/functions_vars_v.html b/c-api/functions_vars_v.html
new file mode 100644
index 00000000..b57c165a
--- /dev/null
+++ b/c-api/functions_vars_v.html
@@ -0,0 +1,89 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Data Fields - Variables
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/gc_8c.html b/c-api/gc_8c.html
index 420676cd..01655116 100644
--- a/c-api/gc_8c.html
+++ b/c-api/gc_8c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc.c File Reference
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
+void ** vpbuffer_add(void **buf, int *len, int i, void *obj)
Definition: runtime.c:6877
+
+#define mark(x)
Definition: types.h:274
diff --git a/c-api/gc_8c_a054bcac795a4872ffd3ef3012887e35a.html b/c-api/gc_8c_a054bcac795a4872ffd3ef3012887e35a.html
index 81dc9443..487a966c 100644
--- a/c-api/gc_8c_a054bcac795a4872ffd3ef3012887e35a.html
+++ b/c-api/gc_8c_a054bcac795a4872ffd3ef3012887e35a.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_num_unswept_heaps
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_a0694b4391145f3e5aac7c12e7d42c16c.html b/c-api/gc_8c_a0694b4391145f3e5aac7c12e7d42c16c.html
index dae1a385..662c194e 100644
--- a/c-api/gc_8c_a0694b4391145f3e5aac7c12e7d42c16c.html
+++ b/c-api/gc_8c_a0694b4391145f3e5aac7c12e7d42c16c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_heap_last_block
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_a098c8f133063f61acf0ea4f61e02f759.html b/c-api/gc_8c_a098c8f133063f61acf0ea4f61e02f759.html
index fbfa85be..3158935e 100644
--- a/c-api/gc_8c_a098c8f133063f61acf0ea4f61e02f759.html
+++ b/c-api/gc_8c_a098c8f133063f61acf0ea4f61e02f759.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_collector_mark_gray
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: mark_stack =
vpbuffer_add (mark_stack, &mark_stack_len, mark_stack_i++, gobj); \
}
#define mark(x)
Definition: types.h:273
-
-
void ** vpbuffer_add(void **buf, int *len, int i, void *obj)
Definition: runtime.c:6784
+
Value:
+
mark_stack =
vpbuffer_add (mark_stack, &mark_stack_len, mark_stack_i++, gobj); \
+
}
"Color" objects gray by adding them to the mark stack for further processing.
Parameters
@@ -182,11 +185,14 @@ $(function() {
+
void ** vpbuffer_add(void **buf, int *len, int i, void *obj)
Definition: runtime.c:6877
+
+
#define mark(x)
Definition: types.h:274
diff --git a/c-api/gc_8c_a1ac66c95bfd99ebbe41ffc01bc9cad6a.html b/c-api/gc_8c_a1ac66c95bfd99ebbe41ffc01bc9cad6a.html
index 5a25f271..f2d005f5 100644
--- a/c-api/gc_8c_a1ac66c95bfd99ebbe41ffc01bc9cad6a.html
+++ b/c-api/gc_8c_a1ac66c95bfd99ebbe41ffc01bc9cad6a.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: GC_BLOCK_SIZE
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_a212e525686d81386c8d047f63e1c8b88.html b/c-api/gc_8c_a212e525686d81386c8d047f63e1c8b88.html
index 5f050e77..24ad8431 100644
--- a/c-api/gc_8c_a212e525686d81386c8d047f63e1c8b88.html
+++ b/c-api/gc_8c_a212e525686d81386c8d047f63e1c8b88.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: GC_BLOCK_BITS
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_a2dc3508324a22659a2578864775ca22e.html b/c-api/gc_8c_a2dc3508324a22659a2578864775ca22e.html
index ed44a018..dfa9131d 100644
--- a/c-api/gc_8c_a2dc3508324a22659a2578864775ca22e.html
+++ b/c-api/gc_8c_a2dc3508324a22659a2578864775ca22e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_try_alloc_slow_fixed_size
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_a3fd0cf1889f90874133c0eb94866180c.html b/c-api/gc_8c_a3fd0cf1889f90874133c0eb94866180c.html
index 25785197..a3154da0 100644
--- a/c-api/gc_8c_a3fd0cf1889f90874133c0eb94866180c.html
+++ b/c-api/gc_8c_a3fd0cf1889f90874133c0eb94866180c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_zero_read_write_counts
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_a474b19188d154daf757fbe51ba078f4d.html b/c-api/gc_8c_a474b19188d154daf757fbe51ba078f4d.html
index 8e7c2829..57114192 100644
--- a/c-api/gc_8c_a474b19188d154daf757fbe51ba078f4d.html
+++ b/c-api/gc_8c_a474b19188d154daf757fbe51ba078f4d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_free_old_thread_data
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_a5ed330ac347699255d102945660d030b.html b/c-api/gc_8c_a5ed330ac347699255d102945660d030b.html
index 3dbe09c7..a0570183 100644
--- a/c-api/gc_8c_a5ed330ac347699255d102945660d030b.html
+++ b/c-api/gc_8c_a5ed330ac347699255d102945660d030b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: debug_dump_globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_a726f6a7a6d07b58bbca64258fd1358e4.html b/c-api/gc_8c_a726f6a7a6d07b58bbca64258fd1358e4.html
index 2f072512..6551bf6f 100644
--- a/c-api/gc_8c_a726f6a7a6d07b58bbca64258fd1358e4.html
+++ b/c-api/gc_8c_a726f6a7a6d07b58bbca64258fd1358e4.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_mark_black
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_a78b7bfab29a50206bfe75ff070e65749.html b/c-api/gc_8c_a78b7bfab29a50206bfe75ff070e65749.html
index 9e1996a2..7b2647e1 100644
--- a/c-api/gc_8c_a78b7bfab29a50206bfe75ff070e65749.html
+++ b/c-api/gc_8c_a78b7bfab29a50206bfe75ff070e65749.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_heap_pad_size
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_a8a23f461bddb011176f88973fe68ef8a.html b/c-api/gc_8c_a8a23f461bddb011176f88973fe68ef8a.html
index bb5f32a9..f7266ebe 100644
--- a/c-api/gc_8c_a8a23f461bddb011176f88973fe68ef8a.html
+++ b/c-api/gc_8c_a8a23f461bddb011176f88973fe68ef8a.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_heap_align
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_a969dac99c3e0290a9221d7fe78003f29.html b/c-api/gc_8c_a969dac99c3e0290a9221d7fe78003f29.html
index 561e318e..3062c88c 100644
--- a/c-api/gc_8c_a969dac99c3e0290a9221d7fe78003f29.html
+++ b/c-api/gc_8c_a969dac99c3e0290a9221d7fe78003f29.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_recopy_obj
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_a9f542dda06a1a342304c570baf6347a0.html b/c-api/gc_8c_a9f542dda06a1a342304c570baf6347a0.html
index 43735fe3..b77172b1 100644
--- a/c-api/gc_8c_a9f542dda06a1a342304c570baf6347a0.html
+++ b/c-api/gc_8c_a9f542dda06a1a342304c570baf6347a0.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_alloc_from_bignum
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_aa4acc565d76fb74488e23f45d762aada.html b/c-api/gc_8c_aa4acc565d76fb74488e23f45d762aada.html
index f8f38b79..d101ad82 100644
--- a/c-api/gc_8c_aa4acc565d76fb74488e23f45d762aada.html
+++ b/c-api/gc_8c_aa4acc565d76fb74488e23f45d762aada.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_free_chunk_size
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_aaadcbfc1097af52c1820459c56a5682e.html b/c-api/gc_8c_aaadcbfc1097af52c1820459c56a5682e.html
index 6f56efae..629bd323 100644
--- a/c-api/gc_8c_aaadcbfc1097af52c1820459c56a5682e.html
+++ b/c-api/gc_8c_aaadcbfc1097af52c1820459c56a5682e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_align
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_aaf4dff9f8ddf206982cfb0478f6cad86.html b/c-api/gc_8c_aaf4dff9f8ddf206982cfb0478f6cad86.html
index c223031e..90327d77 100644
--- a/c-api/gc_8c_aaf4dff9f8ddf206982cfb0478f6cad86.html
+++ b/c-api/gc_8c_aaf4dff9f8ddf206982cfb0478f6cad86.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_heap_end
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_ab08135ec4278369570fa94a56283bbb1.html b/c-api/gc_8c_ab08135ec4278369570fa94a56283bbb1.html
index d305b7e3..ee5e0b99 100644
--- a/c-api/gc_8c_ab08135ec4278369570fa94a56283bbb1.html
+++ b/c-api/gc_8c_ab08135ec4278369570fa94a56283bbb1.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_collector_sweep
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_ab38f9f6afa83d20b2d0957e276b044a7.html b/c-api/gc_8c_ab38f9f6afa83d20b2d0957e276b044a7.html
index 0097d875..472dc283 100644
--- a/c-api/gc_8c_ab38f9f6afa83d20b2d0957e276b044a7.html
+++ b/c-api/gc_8c_ab38f9f6afa83d20b2d0957e276b044a7.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: collector_main
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_ab9a89146d6ef1bcd00e0aa5f370dcebf.html b/c-api/gc_8c_ab9a89146d6ef1bcd00e0aa5f370dcebf.html
index 9f837361..6cf2878d 100644
--- a/c-api/gc_8c_ab9a89146d6ef1bcd00e0aa5f370dcebf.html
+++ b/c-api/gc_8c_ab9a89146d6ef1bcd00e0aa5f370dcebf.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_start_major_collection
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_ac523f279b0046926d76d1a56a031ef06.html b/c-api/gc_8c_ac523f279b0046926d76d1a56a031ef06.html
index 3e7d18c7..8891ba0c 100644
--- a/c-api/gc_8c_ac523f279b0046926d76d1a56a031ef06.html
+++ b/c-api/gc_8c_ac523f279b0046926d76d1a56a031ef06.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_heap_free_size
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_acbfb210eb1275ad8c29b9937862eede5.html b/c-api/gc_8c_acbfb210eb1275ad8c29b9937862eede5.html
index 076375c9..03925c9f 100644
--- a/c-api/gc_8c_acbfb210eb1275ad8c29b9937862eede5.html
+++ b/c-api/gc_8c_acbfb210eb1275ad8c29b9937862eede5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_apply_from_buf
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_ad87edea22c1cba9beebb70ca62dc17bf.html b/c-api/gc_8c_ad87edea22c1cba9beebb70ca62dc17bf.html
index d075cb8d..1a619cbc 100644
--- a/c-api/gc_8c_ad87edea22c1cba9beebb70ca62dc17bf.html
+++ b/c-api/gc_8c_ad87edea22c1cba9beebb70ca62dc17bf.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_heap_first_block
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_ad8f6f6f44acdb47b0ef6451f9822377e.html b/c-api/gc_8c_ad8f6f6f44acdb47b0ef6451f9822377e.html
index a0eb0fe5..cc22965e 100644
--- a/c-api/gc_8c_ad8f6f6f44acdb47b0ef6451f9822377e.html
+++ b/c-api/gc_8c_ad8f6f6f44acdb47b0ef6451f9822377e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_collector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_ade0df17c8cbb93ba9fad250fc98144c0.html b/c-api/gc_8c_ade0df17c8cbb93ba9fad250fc98144c0.html
index 33a12be0..90e1ebfe 100644
--- a/c-api/gc_8c_ade0df17c8cbb93ba9fad250fc98144c0.html
+++ b/c-api/gc_8c_ade0df17c8cbb93ba9fad250fc98144c0.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_print_fixed_size_free_list
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/gc_8c_ae989c655a69c574af497e996f27e6cae.html b/c-api/gc_8c_ae989c655a69c574af497e996f27e6cae.html
index 3e8dfc26..541152c7 100644
--- a/c-api/gc_8c_ae989c655a69c574af497e996f27e6cae.html
+++ b/c-api/gc_8c_ae989c655a69c574af497e996f27e6cae.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_sum_pending_writes
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/globals.html b/c-api/globals.html
index ca1cf3e1..bfedb722 100644
--- a/c-api/globals.html
+++ b/c-api/globals.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -62,7 +65,7 @@ $(function() {
Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:
-
- _ -
-
+
+/* @license-end */
@@ -152,7 +155,7 @@ $(function() {
diff --git a/c-api/globals_b.html b/c-api/globals_b.html
index 090be559..5db1d8e9 100644
--- a/c-api/globals_b.html
+++ b/c-api/globals_b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -108,7 +111,7 @@ $(function() {
diff --git a/c-api/globals_c.html b/c-api/globals_c.html
index 4367ad36..c2062064 100644
--- a/c-api/globals_c.html
+++ b/c-api/globals_c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -63,75 +66,12 @@ $(function() {
Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:
- c -
-c_cycloneiset_entry_pt()
-: tests.c
-
-c_cycloneisetbase_entry_pt()
-: tests.c
-
-c_cycloneisetconstructors_entry_pt()
-: tests.c
-
-c_cycloneisetiterators_entry_pt()
-: tests.c
-
-c_cycloneisetoptimize_entry_pt()
-: tests.c
-
-c_cyclonetest_entry_pt()
-: tests.c
-
c_opaque
: types.h
c_opaque_tag
: types.h
-c_scheme_char_entry_pt()
-: tests.c
-
-c_schemebase_entry_pt()
-: anon.c
-, test.c
-, tests.c
-
-c_schemecomplex_entry_pt()
-: tests.c
-
-c_schemecxr_entry_pt()
-: tests.c
-
-c_schemecyclonecommon_entry_pt()
-: test.c
-, tests.c
-, anon.c
-
-c_schemecycloneutil_entry_pt()
-: tests.c
-
-c_schemeinexact_entry_pt()
-: tests.c
-
-c_schemeprocess_91context_entry_pt()
-: tests.c
-
-c_schemetime_entry_pt()
-: tests.c
-
-c_schemewrite_entry_pt()
-: anon.c
-, test.c
-, tests.c
-
-c_srfi1_entry_pt()
-: tests.c
-
-c_srfi60_entry_pt()
-: tests.c
-
-c_srfi9_entry_pt()
-: tests.c
-
caaaar
: types.h
@@ -229,33 +169,118 @@ $(function() {
char_type
: types.h
+ck_array_commit()
+: ck-polyfill.c
+, ck-polyfill.h
+
+CK_ARRAY_FOREACH
+: ck-polyfill.h
+
+ck_array_init()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_array_iterator_t
+: ck-polyfill.h
+
+CK_ARRAY_MODE_SPMC
+: ck-polyfill.h
+
+ck_array_put_unique()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_array_remove()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_array_t
+: ck-polyfill.h
+
+ck_hs_compare_cb_t
+: ck-polyfill.h
+
+ck_hs_get()
+: ck-polyfill.c
+, ck-polyfill.h
+
+CK_HS_HASH
+: ck-polyfill.h
+
+ck_hs_hash_cb_t
+: ck-polyfill.h
+
+ck_hs_init()
+: ck-polyfill.c
+, ck-polyfill.h
+
+CK_HS_MODE_OBJECT
+: ck-polyfill.h
+
+CK_HS_MODE_SPMC
+: ck-polyfill.h
+
+ck_hs_put()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_hs_t
+: ck-polyfill.h
+
+ck_polyfill_init()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_pr_add_8()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_pr_add_int()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_pr_add_ptr()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_pr_cas_8()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_pr_cas_int()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_pr_cas_ptr()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_pr_load_8()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_pr_load_int()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_pr_load_ptr()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_pr_store_ptr()
+: ck-polyfill.c
+, ck-polyfill.h
+
clear_mutations()
: types.h
, runtime.c
closcall1
-: mstreams.c
-, runtime.c
-, test.c
-, tests.c
-, anon.c
+: mstreams.c
+, runtime.c
closcall2
-: anon.c
-, runtime.c
-, test.c
-, tests.c
-
-closcall3
-: test.c
-, tests.c
-
-closcall4
-: test.c
-, tests.c
-
-closcall6
-: tests.c
+: runtime.c
closure
: types.h
@@ -293,27 +318,6 @@ $(function() {
cond_var_tag
: types.h
-continue_or_gc1
-: anon.c
-, test.c
-, tests.c
-
-continue_or_gc2
-: anon.c
-, test.c
-, tests.c
-
-continue_or_gc3
-: test.c
-, tests.c
-
-continue_or_gc4
-: test.c
-, tests.c
-
-continue_or_gc6
-: tests.c
-
copy2heap()
: runtime.h
, runtime.c
@@ -325,8 +329,8 @@ $(function() {
: types.h
Cyc_apply()
-: runtime.h
-, runtime.c
+: runtime.h
+, runtime.c
Cyc_apply_from_buf()
: gc.c
@@ -378,12 +382,9 @@ $(function() {
: runtime.h
, runtime.c
-Cyc_bytevector_append_va_list
-: runtime.c
-
Cyc_bytevector_copy()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_bytevector_length()
: runtime.h
@@ -397,9 +398,6 @@ $(function() {
: runtime.h
, runtime.c
-Cyc_bytevector_va_list
-: runtime.c
-
Cyc_caaaar
: types.h
@@ -509,6 +507,9 @@ $(function() {
Cyc_char_lte_op()
: runtime.h
+Cyc_check_argc
+: runtime.h
+
Cyc_check_atomic
: runtime.h
@@ -522,6 +523,9 @@ $(function() {
Cyc_check_cond_var
: runtime.h
+Cyc_check_double
+: runtime.h
+
Cyc_check_fixnum
: runtime.h
@@ -584,8 +588,8 @@ $(function() {
, runtime.c
Cyc_default_exception_handler()
-: runtime.h
-, runtime.c
+: runtime.h
+, runtime.c
Cyc_display()
: runtime.h
@@ -596,8 +600,8 @@ $(function() {
, runtime.c
Cyc_display_va_list()
-: runtime.h
-, runtime.c
+: runtime.h
+, runtime.c
Cyc_div()
: runtime.h
@@ -623,8 +627,8 @@ $(function() {
, runtime.c
Cyc_exit_thread()
-: runtime.h
-, runtime.c
+: runtime.h
+, runtime.c
Cyc_expt()
: runtime.h
@@ -692,8 +696,8 @@ $(function() {
, runtime.c
Cyc_get_global_variables()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_glo_call_cc
: runtime.h
@@ -716,8 +720,8 @@ $(function() {
, runtime.c
Cyc_halt()
-: runtime.h
-, runtime.c
+: runtime.h
+, runtime.c
Cyc_has_cycle()
: runtime.h
@@ -750,17 +754,17 @@ $(function() {
, runtime.c
Cyc_int2bignum()
-: types.h
+: runtime.h
, runtime.c
-, runtime.h
+, types.h
Cyc_integer2char()
: runtime.h
, runtime.c
Cyc_invalid_type_error()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
CYC_IO_BUF_LEN
: types.h
@@ -774,24 +778,24 @@ $(function() {
, runtime.c
Cyc_io_close_port()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_io_delete_file()
: runtime.h
, runtime.c
Cyc_io_file_exists()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_io_flush_output_port()
: runtime.h
, runtime.c
Cyc_io_get_output_bytevector()
-: mstreams.c
-, runtime.h
+: runtime.h
+, mstreams.c
Cyc_io_get_output_string()
: runtime.h
@@ -806,24 +810,24 @@ $(function() {
, runtime.c
Cyc_io_open_input_bytevector()
-: mstreams.c
-, runtime.h
+: runtime.h
+, mstreams.c
Cyc_io_open_input_file()
: runtime.h
, runtime.c
Cyc_io_open_input_string()
-: mstreams.c
-, runtime.h
+: runtime.h
+, mstreams.c
Cyc_io_open_output_file()
: runtime.h
, runtime.c
Cyc_io_open_output_string()
-: mstreams.c
-, runtime.h
+: runtime.h
+, mstreams.c
Cyc_io_peek_char()
: runtime.h
@@ -838,16 +842,16 @@ $(function() {
, runtime.c
Cyc_io_read_line()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_io_read_token()
: runtime.h
, runtime.c
Cyc_io_read_u8()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_is_atomic
: runtime.h
@@ -873,6 +877,9 @@ $(function() {
Cyc_is_cvar
: runtime.h
+Cyc_is_double
+: runtime.h
+
Cyc_is_eof_object
: runtime.h
@@ -888,8 +895,8 @@ $(function() {
, runtime.c
Cyc_is_list()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_is_macro
: runtime.h
@@ -918,8 +925,12 @@ $(function() {
, runtime.c
Cyc_is_real()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
+
+Cyc_is_record()
+: runtime.c
+, runtime.h
Cyc_is_string
: runtime.h
@@ -930,40 +941,39 @@ $(function() {
Cyc_is_vector
: runtime.h
+Cyc_is_vector_not_record_type
+: runtime.h
+
Cyc_is_void_object
: runtime.h
Cyc_length()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_length_unsafe()
: runtime.h
, runtime.c
-Cyc_list()
-: runtime.c
-, runtime.h
-
Cyc_list2string()
: runtime.c
, runtime.h
Cyc_list2vector()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_make_bytevector()
: runtime.h
, runtime.c
Cyc_make_rectangular()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_make_shared_object()
-: runtime.c
-, types.h
+: types.h
+, runtime.c
Cyc_make_vector()
: runtime.h
@@ -982,9 +992,12 @@ $(function() {
Cyc_num2double()
: runtime.c
+Cyc_num_cmp_list()
+: runtime.c
+
Cyc_num_cmp_va_list()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_num_eq()
: runtime.h
@@ -1031,6 +1044,10 @@ $(function() {
Cyc_num_lte_op()
: runtime.h
+Cyc_num_op_args()
+: runtime.h
+, runtime.c
+
Cyc_num_op_va_list()
: runtime.h
, runtime.c
@@ -1039,33 +1056,37 @@ $(function() {
: runtime.c
, runtime.h
+Cyc_RECORD_MARKER
+: runtime.h
+, runtime.c
+
Cyc_remainder()
: runtime.c
, runtime.h
Cyc_rt_raise()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_rt_raise2()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_rt_raise_msg()
: runtime.c
, runtime.h
Cyc_scm_call()
-: ffi.c
-, types.h
+: types.h
+, ffi.c
Cyc_scm_call_no_gc()
: types.h
, ffi.c
Cyc_set_car()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_set_car_cps()
: runtime.h
@@ -1080,12 +1101,12 @@ $(function() {
, runtime.h
Cyc_set_cell()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_set_cvar()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_set_globals_changed()
: runtime.c
@@ -1103,63 +1124,60 @@ $(function() {
, runtime.c
Cyc_start_trampoline()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_stderr()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_stdin()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_stdout()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_string2number2_()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_string2number_()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_string2symbol()
: runtime.c
, runtime.h
Cyc_string2utf8()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_string_append()
: runtime.c
, runtime.h
-Cyc_string_append_va_list
-: runtime.c
-
Cyc_string_byte_length()
: runtime.c
, runtime.h
Cyc_string_cmp()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_string_length()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_string_ref()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_string_set()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_sub()
: runtime.h
@@ -1168,8 +1186,8 @@ $(function() {
: runtime.h
Cyc_substring()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_sum()
: runtime.h
@@ -1186,8 +1204,8 @@ $(function() {
, runtime.c
Cyc_thread_sleep()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
CYC_THREAD_STATE_BLOCKED
: types.h
@@ -1208,8 +1226,8 @@ $(function() {
: types.h
Cyc_trigger_minor_gc()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_utf82string()
: runtime.c
@@ -1219,8 +1237,8 @@ $(function() {
: runtime.h
Cyc_utf8_count_code_points()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_utf8_encode()
: runtime.h
@@ -1252,16 +1270,16 @@ $(function() {
: runtime.h
Cyc_vector_set()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_vector_set_cps()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_vector_set_unsafe()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_vector_set_unsafe_cps()
: runtime.c
@@ -1274,16 +1292,16 @@ $(function() {
: runtime.h
Cyc_VOID
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_write()
: runtime.h
, runtime.c
Cyc_write_bytevector()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_write_char()
: runtime.c
@@ -1294,12 +1312,12 @@ $(function() {
, runtime.h
Cyc_write_va()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_write_va_list()
-: runtime.c
-, runtime.h
+: runtime.c
+, runtime.h
@@ -1307,7 +1325,7 @@ $(function() {
diff --git a/c-api/globals_d.html b/c-api/globals_d.html
index ad0ba40d..530b5b06 100644
--- a/c-api/globals_d.html
+++ b/c-api/globals_d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -82,56 +85,41 @@ $(function() {
defprimitive
: types.h
-defsymbol()
-: tests.c
-, types.h
-, tests.c
-, test.c
-, tests.c
-, test.c
-, tests.c
-, test.c
-, tests.c
+ defsymbol
+: types.h
dispatch()
: runtime.c
, runtime.h
dispatch_apply_va()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
dispatch_bytevector()
-: runtime.c
+: runtime.c
dispatch_bytevector_91append()
-: runtime.c
+: runtime.c
dispatch_display_va()
-: runtime.c
-, runtime.h
+: runtime.c
+, runtime.h
dispatch_div()
-: runtime.c
+: runtime.c
dispatch_string_91append()
-: runtime.h
-, runtime.c
-
-dispatch_va()
-: runtime.c
-, runtime.h
+: runtime.c
+, runtime.h
dispatch_write_va()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
do_apply_va
: runtime.c
-do_dispatch()
-: runtime.h
-
double2buffer()
: runtime.c
@@ -147,7 +135,7 @@ $(function() {
diff --git a/c-api/globals_defs.html b/c-api/globals_defs.html
index 50f611fc..c481e6b7 100644
--- a/c-api/globals_defs.html
+++ b/c-api/globals_defs.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -62,7 +65,7 @@ $(function() {
-
- _ -
+ - _ -
__glo_call_95cc_scheme_base
: runtime.h
@@ -84,7 +87,7 @@ $(function() {
diff --git a/c-api/globals_defs_a.html b/c-api/globals_defs_a.html
index 9cd2a233..57d6ca21 100644
--- a/c-api/globals_defs_a.html
+++ b/c-api/globals_defs_a.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -114,7 +117,7 @@ $(function() {
diff --git a/c-api/globals_defs_b.html b/c-api/globals_defs_b.html
index f1cb522f..f1ac4de9 100644
--- a/c-api/globals_defs_b.html
+++ b/c-api/globals_defs_b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -78,7 +81,7 @@ $(function() {
diff --git a/c-api/globals_defs_c.html b/c-api/globals_defs_c.html
index 5b7d88f6..e61a7dc3 100644
--- a/c-api/globals_defs_c.html
+++ b/c-api/globals_defs_c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -153,63 +156,34 @@ $(function() {
cdr
: types.h
+CK_ARRAY_FOREACH
+: ck-polyfill.h
+
+CK_ARRAY_MODE_SPMC
+: ck-polyfill.h
+
+CK_HS_HASH
+: ck-polyfill.h
+
+CK_HS_MODE_OBJECT
+: ck-polyfill.h
+
+CK_HS_MODE_SPMC
+: ck-polyfill.h
+
closcall1
-: mstreams.c
-, runtime.c
-, test.c
-, tests.c
-, anon.c
+: mstreams.c
+, runtime.c
closcall2
-: anon.c
-, runtime.c
-, test.c
-, tests.c
-
-closcall3
-: test.c
-, tests.c
-
-closcall4
-: test.c
-, tests.c
-
-closcall6
-: tests.c
+: runtime.c
complex_num_value
: types.h
-continue_or_gc1
-: anon.c
-, test.c
-, tests.c
-
-continue_or_gc2
-: anon.c
-, test.c
-, tests.c
-
-continue_or_gc3
-: test.c
-, tests.c
-
-continue_or_gc4
-: test.c
-, tests.c
-
-continue_or_gc6
-: tests.c
-
CYC_BINARY_PORT_FLAG
: types.h
-Cyc_bytevector_append_va_list
-: runtime.c
-
-Cyc_bytevector_va_list
-: runtime.c
-
Cyc_caaaar
: types.h
@@ -300,6 +274,9 @@ $(function() {
Cyc_cdr_unsafe
: runtime.h
+Cyc_check_argc
+: runtime.h
+
Cyc_check_atomic
: runtime.h
@@ -309,6 +286,9 @@ $(function() {
Cyc_check_cond_var
: runtime.h
+Cyc_check_double
+: runtime.h
+
Cyc_check_fixnum
: runtime.h
@@ -393,6 +373,9 @@ $(function() {
Cyc_is_cvar
: runtime.h
+Cyc_is_double
+: runtime.h
+
Cyc_is_eof_object
: runtime.h
@@ -426,15 +409,15 @@ $(function() {
Cyc_is_vector
: runtime.h
+Cyc_is_vector_not_record_type
+: runtime.h
+
Cyc_is_void_object
: runtime.h
Cyc_st_add
: runtime.h
-Cyc_string_append_va_list
-: runtime.c
-
CYC_UTF8_ACCEPT
: runtime.h
@@ -459,7 +442,7 @@ $(function() {
diff --git a/c-api/globals_defs_d.html b/c-api/globals_defs_d.html
index 1c722f72..3390af77 100644
--- a/c-api/globals_defs_d.html
+++ b/c-api/globals_defs_d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -93,7 +96,7 @@ $(function() {
diff --git a/c-api/globals_defs_f.html b/c-api/globals_defs_f.html
index 572f4c36..9c81d206 100644
--- a/c-api/globals_defs_f.html
+++ b/c-api/globals_defs_f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -72,7 +75,7 @@ $(function() {
diff --git a/c-api/globals_defs_g.html b/c-api/globals_defs_g.html
index 91e87066..ca0d2739 100644
--- a/c-api/globals_defs_g.html
+++ b/c-api/globals_defs_g.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -153,7 +156,7 @@ $(function() {
diff --git a/c-api/globals_defs_h.html b/c-api/globals_defs_h.html
index b1d8382f..d3769b79 100644
--- a/c-api/globals_defs_h.html
+++ b/c-api/globals_defs_h.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -72,7 +75,7 @@ $(function() {
diff --git a/c-api/globals_defs_i.html b/c-api/globals_defs_i.html
index 33189ad8..febc76c5 100644
--- a/c-api/globals_defs_i.html
+++ b/c-api/globals_defs_i.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -84,7 +87,7 @@ $(function() {
diff --git a/c-api/globals_defs_l.html b/c-api/globals_defs_l.html
index 050e72b1..58978589 100644
--- a/c-api/globals_defs_l.html
+++ b/c-api/globals_defs_l.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -67,7 +70,7 @@ $(function() {
: types.h
load_varargs
-: runtime.h
+: runtime.h
@@ -75,7 +78,7 @@ $(function() {
diff --git a/c-api/globals_defs_m.html b/c-api/globals_defs_m.html
index 089174a7..fba92852 100644
--- a/c-api/globals_defs_m.html
+++ b/c-api/globals_defs_m.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -147,7 +150,7 @@ $(function() {
diff --git a/c-api/globals_defs_n.html b/c-api/globals_defs_n.html
index 9b3e4482..7d5c9075 100644
--- a/c-api/globals_defs_n.html
+++ b/c-api/globals_defs_n.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -81,7 +84,7 @@ $(function() {
diff --git a/c-api/globals_defs_o.html b/c-api/globals_defs_o.html
index dce6c772..634fa5ac 100644
--- a/c-api/globals_defs_o.html
+++ b/c-api/globals_defs_o.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -96,7 +99,7 @@ $(function() {
diff --git a/c-api/globals_defs_p.html b/c-api/globals_defs_p.html
index 83a82426..72894579 100644
--- a/c-api/globals_defs_p.html
+++ b/c-api/globals_defs_p.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -75,7 +78,7 @@ $(function() {
diff --git a/c-api/globals_defs_r.html b/c-api/globals_defs_r.html
index 0ab6b217..e78289e4 100644
--- a/c-api/globals_defs_r.html
+++ b/c-api/globals_defs_r.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -64,74 +67,15 @@ $(function() {
- r -
return_closcall1
-: anon.c
-, mstreams.c
-, test.c
-, tests.c
+: mstreams.c
, runtime.c
return_closcall2
-: test.c
-, tests.c
-, anon.c
-, runtime.c
-
-return_closcall3
-: test.c
-, tests.c
-
-return_closcall4
-: test.c
-, tests.c
-
-return_closcall6
-: tests.c
+: runtime.c
return_copy
: types.h
-return_direct1
-: anon.c
-, test.c
-, tests.c
-
-return_direct2
-: anon.c
-, test.c
-, tests.c
-
-return_direct3
-: test.c
-, tests.c
-
-return_direct4
-: test.c
-, tests.c
-
-return_direct6
-: tests.c
-
-return_direct_with_clo1
-: anon.c
-, test.c
-, tests.c
-
-return_direct_with_clo2
-: tests.c
-, test.c
-, anon.c
-
-return_direct_with_clo3
-: tests.c
-, test.c
-
-return_direct_with_clo4
-: tests.c
-, test.c
-
-return_direct_with_clo6
-: tests.c
-
return_exact_double_op
: runtime.h
@@ -162,7 +106,7 @@ $(function() {
diff --git a/c-api/globals_defs_s.html b/c-api/globals_defs_s.html
index de2a0998..861e3efb 100644
--- a/c-api/globals_defs_s.html
+++ b/c-api/globals_defs_s.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -102,7 +105,7 @@ $(function() {
diff --git a/c-api/globals_defs_t.html b/c-api/globals_defs_t.html
index 885078be..73955aac 100644
--- a/c-api/globals_defs_t.html
+++ b/c-api/globals_defs_t.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -72,7 +75,7 @@ $(function() {
diff --git a/c-api/globals_defs_u.html b/c-api/globals_defs_u.html
index 542b9016..43b20860 100644
--- a/c-api/globals_defs_u.html
+++ b/c-api/globals_defs_u.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -72,7 +75,7 @@ $(function() {
diff --git a/c-api/globals_e.html b/c-api/globals_e.html
index 36569d1c..bbcd57dd 100644
--- a/c-api/globals_e.html
+++ b/c-api/globals_e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -83,7 +86,7 @@ $(function() {
diff --git a/c-api/globals_enum.html b/c-api/globals_enum.html
index 52b981e4..fdf52b9a 100644
--- a/c-api/globals_enum.html
+++ b/c-api/globals_enum.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -88,7 +91,7 @@ $(function() {
diff --git a/c-api/globals_eval.html b/c-api/globals_eval.html
index 5dbf4afb..c1160b4a 100644
--- a/c-api/globals_eval.html
+++ b/c-api/globals_eval.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -207,6 +210,13 @@ $(function() {
+ - r -
+
+
- s -
@@ -85,7 +85,7 @@ $(function() {
diff --git a/c-api/globals_func.html b/c-api/globals_func.html
index ebf02b1b..31960f9a 100644
--- a/c-api/globals_func.html
+++ b/c-api/globals_func.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -62,7 +65,7 @@ $(function() {
-
- _ -
+ - _ -
__121()
: runtime.c
@@ -478,7 +481,7 @@ $(function() {
diff --git a/c-api/globals_func_a.html b/c-api/globals_func_a.html
index aef5ed05..f44c59e2 100644
--- a/c-api/globals_func_a.html
+++ b/c-api/globals_func_a.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -101,7 +104,7 @@ $(function() {
diff --git a/c-api/globals_func_b.html b/c-api/globals_func_b.html
index daec5eee..a07b444d 100644
--- a/c-api/globals_func_b.html
+++ b/c-api/globals_func_b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -73,7 +76,7 @@ $(function() {
diff --git a/c-api/globals_func_c.html b/c-api/globals_func_c.html
index 89107156..50eea9ce 100644
--- a/c-api/globals_func_c.html
+++ b/c-api/globals_func_c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -63,73 +66,82 @@ $(function() {
- c -
-c_cycloneiset_entry_pt()
-: tests.c
-
-c_cycloneisetbase_entry_pt()
-: tests.c
-
-c_cycloneisetconstructors_entry_pt()
-: tests.c
-
-c_cycloneisetiterators_entry_pt()
-: tests.c
-
-c_cycloneisetoptimize_entry_pt()
-: tests.c
-
-c_cyclonetest_entry_pt()
-: tests.c
-
-c_scheme_char_entry_pt()
-: tests.c
-
-c_schemebase_entry_pt()
-: anon.c
-, test.c
-, tests.c
-
-c_schemecomplex_entry_pt()
-: tests.c
-
-c_schemecxr_entry_pt()
-: tests.c
-
-c_schemecyclonecommon_entry_pt()
-: anon.c
-, test.c
-, tests.c
-
-c_schemecycloneutil_entry_pt()
-: tests.c
-
-c_schemeinexact_entry_pt()
-: tests.c
-
-c_schemeprocess_91context_entry_pt()
-: tests.c
-
-c_schemetime_entry_pt()
-: tests.c
-
-c_schemewrite_entry_pt()
-: anon.c
-, test.c
-, tests.c
-
-c_srfi1_entry_pt()
-: tests.c
-
-c_srfi60_entry_pt()
-: tests.c
-
-c_srfi9_entry_pt()
-: tests.c
-
cell_get()
: runtime.h
, runtime.c
+ck_array_commit()
+: ck-polyfill.h
+, ck-polyfill.c
+
+ck_array_init()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_array_put_unique()
+: ck-polyfill.h
+, ck-polyfill.c
+
+ck_array_remove()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_hs_get()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_hs_init()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_hs_put()
+: ck-polyfill.h
+, ck-polyfill.c
+
+ck_polyfill_init()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_pr_add_8()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_pr_add_int()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_pr_add_ptr()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_pr_cas_8()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_pr_cas_int()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_pr_cas_ptr()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_pr_load_8()
+: ck-polyfill.h
+, ck-polyfill.c
+
+ck_pr_load_int()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_pr_load_ptr()
+: ck-polyfill.c
+, ck-polyfill.h
+
+ck_pr_store_ptr()
+: ck-polyfill.c
+, ck-polyfill.h
+
clear_mutations()
: types.h
, runtime.c
@@ -138,12 +150,12 @@ $(function() {
: gc.c
copy2heap()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_apply()
-: runtime.h
-, runtime.c
+: runtime.h
+, runtime.c
Cyc_apply_from_buf()
: gc.c
@@ -233,8 +245,8 @@ $(function() {
, runtime.c
Cyc_default_exception_handler()
-: runtime.h
-, runtime.c
+: runtime.h
+, runtime.c
Cyc_display()
: runtime.h
@@ -245,8 +257,8 @@ $(function() {
, runtime.c
Cyc_display_va_list()
-: runtime.h
-, runtime.c
+: runtime.h
+, runtime.c
Cyc_div()
: runtime.h
@@ -265,8 +277,8 @@ $(function() {
, runtime.c
Cyc_exit_thread()
-: runtime.h
-, runtime.c
+: runtime.h
+, runtime.c
Cyc_expt()
: runtime.h
@@ -336,12 +348,12 @@ $(function() {
, runtime.c
Cyc_global_set_cps()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_halt()
-: runtime.h
-, runtime.c
+: runtime.h
+, runtime.c
Cyc_has_cycle()
: runtime.h
@@ -440,8 +452,8 @@ $(function() {
, runtime.c
Cyc_io_open_output_string()
-: runtime.h
-, mstreams.c
+: mstreams.c
+, runtime.h
Cyc_io_peek_char()
: runtime.h
@@ -456,24 +468,24 @@ $(function() {
, runtime.c
Cyc_io_read_line()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_io_read_token()
: runtime.h
, runtime.c
Cyc_io_read_u8()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_is_immutable()
: runtime.h
, runtime.c
Cyc_is_integer()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_is_list()
: runtime.h
@@ -488,24 +500,24 @@ $(function() {
, runtime.c
Cyc_is_real()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
+
+Cyc_is_record()
+: runtime.h
+, runtime.c
Cyc_length()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_length_unsafe()
: runtime.h
, runtime.c
-Cyc_list()
-: runtime.h
-, runtime.c
-
Cyc_list2string()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_list2vector()
: runtime.h
@@ -520,8 +532,8 @@ $(function() {
, runtime.c
Cyc_make_shared_object()
-: types.h
-, runtime.c
+: runtime.c
+, types.h
Cyc_make_vector()
: runtime.h
@@ -540,6 +552,9 @@ $(function() {
Cyc_num2double()
: runtime.c
+Cyc_num_cmp_list()
+: runtime.c
+
Cyc_num_cmp_va_list()
: runtime.h
, runtime.c
@@ -589,45 +604,49 @@ $(function() {
Cyc_num_lte_op()
: runtime.h
+Cyc_num_op_args()
+: runtime.h
+, runtime.c
+
Cyc_num_op_va_list()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_number2string2()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_remainder()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_rt_raise()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_rt_raise2()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_rt_raise_msg()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_scm_call()
-: ffi.c
-, types.h
+: types.h
+, ffi.c
Cyc_scm_call_no_gc()
-: types.h
-, ffi.c
+: ffi.c
+, types.h
Cyc_set_car()
: runtime.h
, runtime.c
Cyc_set_car_cps()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_set_cdr()
: runtime.c
@@ -638,24 +657,24 @@ $(function() {
, runtime.h
Cyc_set_cell()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_set_cvar()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_set_globals_changed()
: runtime.c
, runtime.h
Cyc_spawn_thread()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_st_print()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_start_trampoline()
: runtime.c
@@ -670,12 +689,12 @@ $(function() {
, runtime.h
Cyc_stdout()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_string2number2_()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_string2number_()
: runtime.h
@@ -686,16 +705,16 @@ $(function() {
, runtime.c
Cyc_string2utf8()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_string_append()
: runtime.c
, runtime.h
Cyc_string_byte_length()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_string_cmp()
: runtime.h
@@ -710,8 +729,8 @@ $(function() {
, runtime.c
Cyc_string_set()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_sub()
: runtime.h
@@ -720,8 +739,8 @@ $(function() {
: runtime.h
Cyc_substring()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_sum()
: runtime.h
@@ -738,16 +757,16 @@ $(function() {
, runtime.c
Cyc_thread_sleep()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_trigger_minor_gc()
: runtime.c
, runtime.h
Cyc_utf82string()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_utf8_count_code_points()
: runtime.c
@@ -770,8 +789,8 @@ $(function() {
, runtime.c
Cyc_vector_ref()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_vector_set()
: runtime.c
@@ -782,12 +801,12 @@ $(function() {
, runtime.h
Cyc_vector_set_unsafe()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_vector_set_unsafe_cps()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
Cyc_write()
: runtime.c
@@ -802,16 +821,16 @@ $(function() {
, runtime.h
Cyc_write_u8()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
Cyc_write_va()
: runtime.h
, runtime.c
Cyc_write_va_list()
-: runtime.c
-, runtime.h
+: runtime.c
+, runtime.h
@@ -819,7 +838,7 @@ $(function() {
diff --git a/c-api/globals_func_d.html b/c-api/globals_func_d.html
index 3e4b45d5..c8dc9aa6 100644
--- a/c-api/globals_func_d.html
+++ b/c-api/globals_func_d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -76,51 +79,34 @@ $(function() {
declare_num_op()
: runtime.c
-defsymbol()
-: test.c
-, tests.c
-, test.c
-, tests.c
-, test.c
-, tests.c
-, test.c
-, tests.c
-
dispatch()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
dispatch_apply_va()
-: runtime.h
-, runtime.c
+: runtime.h
+, runtime.c
dispatch_bytevector()
-: runtime.c
+: runtime.c
dispatch_bytevector_91append()
-: runtime.c
+: runtime.c
dispatch_display_va()
-: runtime.c
-, runtime.h
+: runtime.c
+, runtime.h
dispatch_div()
-: runtime.c
+: runtime.c
dispatch_string_91append()
-: runtime.c
-, runtime.h
-
-dispatch_va()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
dispatch_write_va()
-: runtime.c
-, runtime.h
-
-do_dispatch()
-: runtime.h
+: runtime.c
+, runtime.h
double2buffer()
: runtime.c
@@ -131,7 +117,7 @@ $(function() {
diff --git a/c-api/globals_func_e.html b/c-api/globals_func_e.html
index 87178a97..c9b34375 100644
--- a/c-api/globals_func_e.html
+++ b/c-api/globals_func_e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -77,7 +80,7 @@ $(function() {
diff --git a/c-api/globals_func_f.html b/c-api/globals_func_f.html
index af746e95..602d68cd 100644
--- a/c-api/globals_func_f.html
+++ b/c-api/globals_func_f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -73,7 +76,7 @@ $(function() {
diff --git a/c-api/globals_func_g.html b/c-api/globals_func_g.html
index 017991a4..6a22d1e0 100644
--- a/c-api/globals_func_g.html
+++ b/c-api/globals_func_g.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -289,7 +292,7 @@ $(function() {
diff --git a/c-api/globals_func_h.html b/c-api/globals_func_h.html
index 73e51017..7e7d723f 100644
--- a/c-api/globals_func_h.html
+++ b/c-api/globals_func_h.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -63,29 +66,36 @@ $(function() {
- h -
+hash_function()
+: ck-polyfill.c
+
hashset_add()
: hashset.c
, hashset.h
hashset_create()
-: hashset.h
-, hashset.c
+: hashset.c
+, hashset.h
hashset_destroy()
: hashset.c
, hashset.h
hashset_is_member()
-: hashset.h
-, hashset.c
+: hashset.c
+, hashset.h
hashset_num_items()
-: hashset.h
-, hashset.c
+: hashset.c
+, hashset.h
hashset_remove()
-: hashset.c
-, hashset.h
+: hashset.h
+, hashset.c
+
+hashset_to_array()
+: hashset.c
+, hashset.h
@@ -93,7 +103,7 @@ $(function() {
diff --git a/c-api/globals_func_i.html b/c-api/globals_func_i.html
index 19135559..59686256 100644
--- a/c-api/globals_func_i.html
+++ b/c-api/globals_func_i.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -76,7 +79,7 @@ $(function() {
diff --git a/c-api/globals_func_m.html b/c-api/globals_func_m.html
index 32d2f0c1..c6483151 100644
--- a/c-api/globals_func_m.html
+++ b/c-api/globals_func_m.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -63,26 +66,21 @@ $(function() {
- m -
-main()
-: anon.c
-, test.c
-, tests.c
-
malloc_make_pair()
: runtime.h
, runtime.c
mcvar()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
memberp()
: runtime.h
, runtime.c
memqp()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
MRG32k3a()
: runtime.c
@@ -94,7 +92,7 @@ $(function() {
diff --git a/c-api/globals_func_o.html b/c-api/globals_func_o.html
index fea1581f..ea71ea1a 100644
--- a/c-api/globals_func_o.html
+++ b/c-api/globals_func_o.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -73,7 +76,7 @@ $(function() {
diff --git a/c-api/globals_func_p.html b/c-api/globals_func_p.html
index 069080be..b5b90074 100644
--- a/c-api/globals_func_p.html
+++ b/c-api/globals_func_p.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -73,7 +76,7 @@ $(function() {
diff --git a/c-api/globals_func_r.html b/c-api/globals_func_r.html
index 23f69498..1fa15a70 100644
--- a/c-api/globals_func_r.html
+++ b/c-api/globals_func_r.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -76,7 +79,7 @@ $(function() {
diff --git a/c-api/globals_func_s.html b/c-api/globals_func_s.html
index 99ed8e09..4ee0cf07 100644
--- a/c-api/globals_func_s.html
+++ b/c-api/globals_func_s.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -67,6 +70,26 @@ $(function() {
: runtime.h
, runtime.c
+simple_hashset_add()
+: ck-polyfill.h
+, ck-polyfill.c
+
+simple_hashset_create()
+: ck-polyfill.c
+, ck-polyfill.h
+
+simple_hashset_destroy()
+: ck-polyfill.h
+, ck-polyfill.c
+
+simple_hashset_is_member()
+: ck-polyfill.c
+, ck-polyfill.h
+
+simple_hashset_set_hash_function()
+: ck-polyfill.c
+, ck-polyfill.h
+
str_is_bignum()
: runtime.c
@@ -76,7 +99,7 @@ $(function() {
diff --git a/c-api/globals_func_t.html b/c-api/globals_func_t.html
index 08e9d8c3..e07509fe 100644
--- a/c-api/globals_func_t.html
+++ b/c-api/globals_func_t.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -73,7 +76,7 @@ $(function() {
diff --git a/c-api/globals_func_v.html b/c-api/globals_func_v.html
index dbabbe7f..2e5a09ff 100644
--- a/c-api/globals_func_v.html
+++ b/c-api/globals_func_v.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -89,7 +92,7 @@ $(function() {
diff --git a/c-api/globals_g.html b/c-api/globals_g.html
index f3b9516b..2b6fee84 100644
--- a/c-api/globals_g.html
+++ b/c-api/globals_g.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -407,7 +410,7 @@ $(function() {
diff --git a/c-api/globals_h.html b/c-api/globals_h.html
index a6463d87..34674be4 100644
--- a/c-api/globals_h.html
+++ b/c-api/globals_h.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -63,33 +66,46 @@ $(function() {
Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:
- h -
+hash_func_t
+: ck-polyfill.h
+
+hash_function()
+: ck-polyfill.c
+
+hashmap_t
+: ck-polyfill.h
+
hashset_add()
: hashset.c
, hashset.h
hashset_create()
-: hashset.h
-, hashset.c
+: hashset.c
+, hashset.h
hashset_destroy()
: hashset.c
, hashset.h
hashset_is_member()
-: hashset.h
-, hashset.c
+: hashset.c
+, hashset.h
hashset_num_items()
: hashset.c
, hashset.h
hashset_remove()
-: hashset.c
-, hashset.h
+: hashset.h
+, hashset.c
hashset_t
: hashset.h
+hashset_to_array()
+: hashset.c
+, hashset.h
+
HEAP_64
: types.h
@@ -114,7 +130,7 @@ $(function() {
diff --git a/c-api/globals_i.html b/c-api/globals_i.html
index e84ed8b4..824865f2 100644
--- a/c-api/globals_i.html
+++ b/c-api/globals_i.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -97,7 +100,7 @@ $(function() {
diff --git a/c-api/globals_l.html b/c-api/globals_l.html
index f04c9e82..469e855a 100644
--- a/c-api/globals_l.html
+++ b/c-api/globals_l.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -70,7 +73,7 @@ $(function() {
: types.h
load_varargs
-: runtime.h
+: runtime.h
@@ -78,7 +81,7 @@ $(function() {
diff --git a/c-api/globals_m.html b/c-api/globals_m.html
index ddecee96..7710b13d 100644
--- a/c-api/globals_m.html
+++ b/c-api/globals_m.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -78,11 +81,6 @@ $(function() {
macro_tag
: types.h
-main()
-: tests.c
-, anon.c
-, test.c
-
make_boolean
: types.h
@@ -135,8 +133,8 @@ $(function() {
: types.h
malloc_make_pair()
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
mark
: types.h
@@ -157,23 +155,23 @@ $(function() {
: types.h
mcvar()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
memberp()
: runtime.c
, runtime.h
memqp()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
mmacro
: types.h
MRG32k3a()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
mutex
: types.h
@@ -187,7 +185,7 @@ $(function() {
diff --git a/c-api/globals_n.html b/c-api/globals_n.html
index e30055bf..3f4d0b2b 100644
--- a/c-api/globals_n.html
+++ b/c-api/globals_n.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -81,7 +84,7 @@ $(function() {
diff --git a/c-api/globals_o.html b/c-api/globals_o.html
index aeca8329..d20ac9d6 100644
--- a/c-api/globals_o.html
+++ b/c-api/globals_o.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -106,7 +109,7 @@ $(function() {
diff --git a/c-api/globals_p.html b/c-api/globals_p.html
index ab764841..961ebc4a 100644
--- a/c-api/globals_p.html
+++ b/c-api/globals_p.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -437,9 +440,12 @@ $(function() {
: runtime.c
, runtime.h
+primitive_function_type
+: types.h
+
primitive_integer_127
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
primitive_integer_91_125char
: runtime.c
@@ -450,20 +456,20 @@ $(function() {
, runtime.c
primitive_list_91_125string
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
primitive_list_91_125vector
: runtime.h
, runtime.c
primitive_macro_127
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
primitive_make_91bytevector
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
primitive_make_91vector
: runtime.c
@@ -478,32 +484,32 @@ $(function() {
, runtime.h
primitive_null_127
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
primitive_number_127
: runtime.h
, runtime.c
primitive_number_91_125string
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
primitive_open_91binary_91input_91file
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
primitive_open_91binary_91output_91file
: runtime.h
, runtime.c
primitive_open_91input_91file
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
primitive_open_91output_91file
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
primitive_pair_127
: runtime.c
@@ -514,28 +520,28 @@ $(function() {
, runtime.c
primitive_port_127
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
primitive_procedure_127
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
primitive_read_91char
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
primitive_real_127
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
primitive_set_91car_67
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
primitive_set_91cdr_67
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
primitive_set_91cell_67
: runtime.h
@@ -546,8 +552,8 @@ $(function() {
, runtime.h
primitive_string_127
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
primitive_string_91_125number
: runtime.c
@@ -582,12 +588,12 @@ $(function() {
, runtime.c
primitive_symbol_127
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
primitive_symbol_91_125string
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
primitive_system
: runtime.c
@@ -601,12 +607,12 @@ $(function() {
, runtime.h
primitive_vector_91length
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
primitive_vector_91ref
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
primitive_vector_91set_67
: runtime.c
@@ -618,7 +624,7 @@ $(function() {
diff --git a/c-api/globals_q.html b/c-api/globals_q.html
index 37238303..27d88248 100644
--- a/c-api/globals_q.html
+++ b/c-api/globals_q.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -73,7 +76,7 @@ $(function() {
diff --git a/c-api/globals_r.html b/c-api/globals_r.html
index 731d0f9f..670cf60b 100644
--- a/c-api/globals_r.html
+++ b/c-api/globals_r.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -66,79 +69,23 @@ $(function() {
read_from_port()
: runtime.c
+record_tag
+: types.h
+
register_library()
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
return_closcall1
-: anon.c
-, tests.c
-, mstreams.c
+: mstreams.c
, runtime.c
-, test.c
return_closcall2
-: anon.c
-, runtime.c
-, test.c
-, tests.c
-
-return_closcall3
-: test.c
-, tests.c
-
-return_closcall4
-: tests.c
-, test.c
-
-return_closcall6
-: tests.c
+: runtime.c
return_copy
: types.h
-return_direct1
-: anon.c
-, test.c
-, tests.c
-
-return_direct2
-: anon.c
-, test.c
-, tests.c
-
-return_direct3
-: test.c
-, tests.c
-
-return_direct4
-: test.c
-, tests.c
-
-return_direct6
-: tests.c
-
-return_direct_with_clo1
-: tests.c
-, test.c
-, anon.c
-
-return_direct_with_clo2
-: anon.c
-, test.c
-, tests.c
-
-return_direct_with_clo3
-: tests.c
-, test.c
-
-return_direct_with_clo4
-: tests.c
-, test.c
-
-return_direct_with_clo6
-: tests.c
-
return_exact_double_op
: runtime.h
@@ -169,7 +116,7 @@ $(function() {
diff --git a/c-api/globals_s.html b/c-api/globals_s.html
index a9d89f00..ea69d4fa 100644
--- a/c-api/globals_s.html
+++ b/c-api/globals_s.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -79,6 +82,29 @@ $(function() {
set_thread_blocked
: types.h
+simple_hashset_add()
+: ck-polyfill.h
+, ck-polyfill.c
+
+simple_hashset_create()
+: ck-polyfill.c
+, ck-polyfill.h
+
+simple_hashset_destroy()
+: ck-polyfill.c
+, ck-polyfill.h
+
+simple_hashset_is_member()
+: ck-polyfill.c
+, ck-polyfill.h
+
+simple_hashset_set_hash_function()
+: ck-polyfill.h
+, ck-polyfill.c
+
+simple_hashset_t
+: ck-polyfill.h
+
STACK_GROWTH_IS_DOWNWARD
: types.h
@@ -154,7 +180,7 @@ $(function() {
diff --git a/c-api/globals_t.html b/c-api/globals_t.html
index 341d9bcf..2f827f7e 100644
--- a/c-api/globals_t.html
+++ b/c-api/globals_t.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -82,7 +85,7 @@ $(function() {
diff --git a/c-api/globals_type.html b/c-api/globals_type.html
index ddb067d5..8707340f 100644
--- a/c-api/globals_type.html
+++ b/c-api/globals_type.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -86,6 +89,21 @@ $(function() {
char_type
: types.h
+ck_array_iterator_t
+: ck-polyfill.h
+
+ck_array_t
+: ck-polyfill.h
+
+ck_hs_compare_cb_t
+: ck-polyfill.h
+
+ck_hs_hash_cb_t
+: ck-polyfill.h
+
+ck_hs_t
+: ck-polyfill.h
+
closure
: types.h
@@ -109,10 +127,7 @@ $(function() {
- f -
@@ -137,6 +152,12 @@ $(function() {
- h -
- s -
diff --git a/c-api/globals_u.html b/c-api/globals_u.html
index 015ec925..9822b07f 100644
--- a/c-api/globals_u.html
+++ b/c-api/globals_u.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -72,7 +75,7 @@ $(function() {
diff --git a/c-api/globals_v.html b/c-api/globals_v.html
index 06596733..a0f6cd6a 100644
--- a/c-api/globals_v.html
+++ b/c-api/globals_v.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -101,7 +104,7 @@ $(function() {
diff --git a/c-api/globals_vars.html b/c-api/globals_vars.html
index fd90a7fa..7e697287 100644
--- a/c-api/globals_vars.html
+++ b/c-api/globals_vars.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -62,1602 +65,14 @@ $(function() {
-
- _ -
-__glo__75make_91iset_cyclone_iset
-: tests.c
-
-__glo__75write_91bytevector_191_191inline_191_191_scheme_base
-: anon.c
-, tests.c
-, test.c
-
-__glo__85my_91glo_85
-: test.c
-
-__glo__break_srfi_1
-: tests.c
-
-__glo__case_scheme_base
-: test.c
-, tests.c
-, anon.c
-
-__glo__do_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo__list_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo__void_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_abs_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_alist_91cons_srfi_1
-: tests.c
-
-__glo_alist_91copy_srfi_1
-: tests.c
-
-__glo_alist_91delete_67_srfi_1
-: tests.c
-
-__glo_alist_91delete_srfi_1
-: tests.c
-
-__glo_and_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_any_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_append_67_srfi_1
-: tests.c
-
-__glo_append_91map_67_srfi_1
-: tests.c
-
-__glo_append_91map_srfi_1
-: tests.c
-
-__glo_append_91reverse_67_srfi_1
-: tests.c
-
-__glo_append_91reverse_srfi_1
-: tests.c
-
-__glo_append_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_assoc_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_begin_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_bignum_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_binary_91port_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_boolean_123_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_break_67_srfi_1
-: tests.c
-
-__glo_bytevector_91copy_67_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_bytevector_91copy_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_call_91with_91current_91continuation_scheme_base
-: tests.c
-, anon.c
-, test.c
-
-__glo_call_91with_91port_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_call_91with_91values_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_call_95cc_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_car_87cdr_srfi_1
-: tests.c
-
-__glo_ceiling_191_191inline_191_191_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_ceiling_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_char_121_123_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_char_121_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_char_123_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_char_125_123_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_char_125_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_circular_91list_127_srfi_1
-: tests.c
-
-__glo_circular_91list_srfi_1
-: tests.c
-
-__glo_complex_127_191_191inline_191_191_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_complex_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_concatenate_67_srfi_1
-: tests.c
-
-__glo_concatenate_srfi_1
-: tests.c
-
-__glo_cond_91expand_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_cond_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_cons_85_srfi_1
-: tests.c
-
-__glo_cons_91source_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_count_srfi_1
-: tests.c
-
-__glo_current_91error_91port_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_current_91input_91port_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_current_91output_91port_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_current_91test_91applier_cyclone_test
-: tests.c
-
-__glo_current_91test_91comparator_cyclone_test
-: tests.c
-
-__glo_current_91test_91epsilon_cyclone_test
-: tests.c
-
-__glo_current_91test_91group_91reporter_cyclone_test
-: tests.c
-
-__glo_current_91test_91group_cyclone_test
-: tests.c
-
-__glo_current_91test_91handler_cyclone_test
-: tests.c
-
-__glo_current_91test_91skipper_cyclone_test
-: tests.c
-
-__glo_current_91test_91verbosity_cyclone_test
-: tests.c
-
-__glo_Cyc_91add_91exception_91handler_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_Cyc_91add_91feature_67_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_Cyc_91for_91each_91loop_911_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_Cyc_91for_91each_91loop_912_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_Cyc_91map_91loop_911_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_Cyc_91map_91loop_912_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_Cyc_91obj_123_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_Cyc_91remove_91exception_91handler_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_Cyc_91version_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_define_91record_91type_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_define_91values_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_delete_67_srfi_1
-: tests.c
-
-__glo_delete_91duplicates_67_srfi_1
-: tests.c
-
-__glo_delete_91duplicates_srfi_1
-: tests.c
-
-__glo_delete_srfi_1
-: tests.c
-
-__glo_denominator_191_191inline_191_191_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_denominator_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_display_scheme_write
-: anon.c
-, test.c
-, tests.c
-
-__glo_dotted_91list_127_srfi_1
-: tests.c
-
-__glo_drop_91right_67_srfi_1
-: tests.c
-
-__glo_drop_91right_srfi_1
-: tests.c
-
-__glo_drop_91while_srfi_1
-: tests.c
-
-__glo_drop_srfi_1
-: tests.c
-
-__glo_dynamic_91wind_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_eighth_srfi_1
-: tests.c
-
-__glo_end_91of_91iset_127_cyclone_iset
-: tests.c
-
-__glo_eof_91object_191_191inline_191_191_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_eof_91object_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_error_91object_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_error_91object_91irritants_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_error_91object_91message_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_error_95loc_scheme_base
-: anon.c
-, test.c
-
-__glo_error_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_even_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_every_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_exact_127_191_191inline_191_191_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_exact_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_exact_91integer_127_191_191inline_191_191_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_exact_91integer_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_exact_91integer_91sqrt_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_exact_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_expt_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_fast_91string_121_123_127_191_191inline_191_191_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_fast_91string_121_123_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_fast_91string_121_127_191_191inline_191_191_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_fast_91string_121_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_fast_91string_123_127_191_191inline_191_191_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_fast_91string_123_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_fast_91string_125_123_127_191_191inline_191_191_scheme_base
-: test.c
-, tests.c
-, anon.c
-
-__glo_fast_91string_125_123_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_fast_91string_125_127_191_191inline_191_191_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_fast_91string_125_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_features_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_fifth_srfi_1
-: tests.c
-
-__glo_filter_67_srfi_1
-: tests.c
-
-__glo_filter_91map_srfi_1
-: tests.c
-
-__glo_filter_srfi_1
-: tests.c
-
-__glo_find_91tail_srfi_1
-: tests.c
-
-__glo_find_srfi_1
-: tests.c
-
-__glo_first_srfi_1
-: tests.c
-
-__glo_floor_191_191inline_191_191_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_floor_91quotient_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_floor_91remainder_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_floor_95_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_floor_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_flush_91output_91port_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_fold_91right_srfi_1
-: tests.c
-
-__glo_fold_srfi_1
-: tests.c
-
-__glo_foldl_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_foldr_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_for_91each_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_fourth_srfi_1
-: tests.c
-
-__glo_gcd_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_get_91output_91bytevector_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_get_91output_91string_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_guard_91aux_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_guard_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_inexact_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_inexact_191_191inline_191_191_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_inexact_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_input_91port_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_input_91port_91open_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_Integer_91Set_cyclone_iset
-: tests.c
-
-__glo_iota_srfi_1
-: tests.c
-
-__glo_is_91a_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_iset_121_123_cyclone_iset
-: tests.c
-
-__glo_iset_123_cyclone_iset
-: tests.c
-
-__glo_iset_125_123_cyclone_iset
-: tests.c
-
-__glo_iset_127_cyclone_iset
-: tests.c
-
-__glo_iset_91_125code_cyclone_iset_optimize
-: tests.c
-
-__glo_iset_91_125list_cyclone_iset
-: tests.c
-
-__glo_iset_91adjoin_67_cyclone_iset
-: tests.c
-
-__glo_iset_91adjoin_cyclone_iset
-: tests.c
-
-__glo_iset_91balance_67_cyclone_iset_optimize
-: tests.c
-
-__glo_iset_91balance_cyclone_iset_optimize
-: tests.c
-
-__glo_iset_91contains_127_cyclone_iset
-: tests.c
-
-__glo_iset_91copy_cyclone_iset
-: tests.c
-
-__glo_iset_91cursor_127_cyclone_iset
-: tests.c
-
-__glo_iset_91cursor_91next_cyclone_iset
-: tests.c
-
-__glo_iset_91cursor_cyclone_iset
-: tests.c
-
-__glo_iset_91delete_67_cyclone_iset
-: tests.c
-
-__glo_iset_91delete_cyclone_iset
-: tests.c
-
-__glo_iset_91difference_67_cyclone_iset
-: tests.c
-
-__glo_iset_91difference_cyclone_iset
-: tests.c
-
-__glo_iset_91empty_127_cyclone_iset
-: tests.c
-
-__glo_iset_91fold_91node_cyclone_iset
-: tests.c
-
-__glo_iset_91fold_cyclone_iset
-: tests.c
-
-__glo_iset_91for_91each_91node_cyclone_iset
-: tests.c
-
-__glo_iset_91for_91each_cyclone_iset
-: tests.c
-
-__glo_iset_91intersection_67_cyclone_iset
-: tests.c
-
-__glo_iset_91intersection_cyclone_iset
-: tests.c
-
-__glo_iset_91map_cyclone_iset
-: tests.c
-
-__glo_iset_91optimize_67_cyclone_iset_optimize
-: tests.c
-
-__glo_iset_91optimize_cyclone_iset_optimize
-: tests.c
-
-__glo_iset_91ref_cyclone_iset
-: tests.c
-
-__glo_iset_91size_cyclone_iset
-: tests.c
-
-__glo_iset_91union_67_cyclone_iset
-: tests.c
-
-__glo_iset_91union_cyclone_iset
-: tests.c
-
-__glo_iset_cyclone_iset
-: tests.c
-
-__glo_last_91pair_srfi_1
-: tests.c
-
-__glo_last_srfi_1
-: tests.c
-
-__glo_lcm_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_length_87_srfi_1
-: tests.c
-
-__glo_let_85_91values_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_let_85_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_let_91values_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_let_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_letrec_85_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_letrec_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_list_123_srfi_1
-: tests.c
-
-__glo_list_127_191_191inline_191_191_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_list_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_list_91_125iset_67_cyclone_iset
-: tests.c
-
-__glo_list_91_125iset_cyclone_iset
-: tests.c
-
-__glo_list_91copy_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_list_91index_srfi_1
-: tests.c
-
-__glo_list_91ref_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_list_91set_67_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_list_91tabulate_srfi_1
-: tests.c
-
-__glo_list_91tail_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_lset_121_123_srfi_1
-: tests.c
-
-__glo_lset_123_srfi_1
-: tests.c
-
-__glo_lset_91adjoin_srfi_1
-: tests.c
-
-__glo_lset_91diff_87intersection_67_srfi_1
-: tests.c
-
-__glo_lset_91diff_87intersection_srfi_1
-: tests.c
-
-__glo_lset_91difference_67_srfi_1
-: tests.c
-
-__glo_lset_91difference_srfi_1
-: tests.c
-
-__glo_lset_91intersection_67_srfi_1
-: tests.c
-
-__glo_lset_91intersection_srfi_1
-: tests.c
-
-__glo_lset_91union_67_srfi_1
-: tests.c
-
-__glo_lset_91union_srfi_1
-: tests.c
-
-__glo_lset_91xor_67_srfi_1
-: tests.c
-
-__glo_lset_91xor_srfi_1
-: tests.c
-
-__glo_make_91constructor_95args_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_make_91constructor_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_make_91getter_scheme_base
-: test.c
-, anon.c
-, tests.c
-
-__glo_make_91iset_cyclone_iset
-: tests.c
-
-__glo_make_91list_scheme_base
-: test.c
-, anon.c
-, tests.c
-
-__glo_make_91parameter_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_make_91setter_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_make_91string_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_make_91type_91predicate_scheme_base
-: test.c
-, anon.c
-, tests.c
-
-__glo_map_67_srfi_1
-: tests.c
-
-__glo_map_91in_91order_srfi_1
-: tests.c
-
-__glo_map_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_max_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_member_scheme_base
-: tests.c
-, anon.c
-, test.c
-
-__glo_min_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_modulo_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_negative_127_191_191inline_191_191_scheme_base
-: test.c
-, anon.c
-, tests.c
-
-__glo_negative_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_newline_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_ninth_srfi_1
-: tests.c
-
-__glo_not_191_191inline_191_191_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_not_91pair_127_srfi_1
-: tests.c
-
-__glo_not_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_null_91list_127_srfi_1
-: tests.c
-
-__glo_numerator_191_191inline_191_191_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_numerator_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_odd_127_scheme_base
-: test.c
-, anon.c
-, tests.c
-
-__glo_open_91input_91bytevector_scheme_base
-: tests.c
-, anon.c
-, test.c
-
-__glo_open_91input_91string_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_open_91output_91bytevector_scheme_base
-: test.c
-, tests.c
-, anon.c
-
-__glo_open_91output_91string_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_or_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_output_91port_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_output_91port_91open_127_scheme_base
-: test.c
-, tests.c
-, anon.c
-
-__glo_pair_91fold_91right_srfi_1
-: tests.c
-
-__glo_pair_91fold_srfi_1
-: tests.c
-
-__glo_pair_91for_91each_srfi_1
-: tests.c
-
-__glo_parameterize_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_partition_67_srfi_1
-: tests.c
-
-__glo_partition_srfi_1
-: tests.c
-
-__glo_peek_91char_scheme_base
-: anon.c
-, tests.c
-, test.c
-
-__glo_peek_91u8_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_positive_127_191_191inline_191_191_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_positive_127_scheme_base
-: test.c
-, tests.c
-, anon.c
-
-__glo_print_91exception_cyclone_test
-: tests.c
-
-__glo_proper_91list_127_srfi_1
-: tests.c
-
-__glo_quasiquote_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_quotient_191_191inline_191_191_scheme_base
-: test.c
-, tests.c
-, anon.c
-
-__glo_quotient_scheme_base
-: tests.c
-, anon.c
-, test.c
-
-__glo_raise_91continuable_scheme_base
-: test.c
-, anon.c
-, tests.c
-
-__glo_raise_scheme_base
-: tests.c
-, test.c
-, anon.c
-
-__glo_rational_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_read_91bytevector_67_scheme_base
-: test.c
-, tests.c
-, anon.c
-
-__glo_read_91bytevector_scheme_base
-: test.c
-, tests.c
-, anon.c
-
-__glo_read_91char_scheme_base
-: anon.c
-, tests.c
-, test.c
-
-__glo_read_91line_scheme_base
-: test.c
-, tests.c
-, anon.c
-
-__glo_read_91string_scheme_base
-: anon.c
-, tests.c
-, test.c
-
-__glo_read_91u8_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_receive_scheme_base
-: anon.c
-, tests.c
-, test.c
-
-__glo_record_127_scheme_base
-: test.c
-, tests.c
-, anon.c
-
-__glo_reduce_91right_srfi_1
-: tests.c
-
-__glo_reduce_srfi_1
-: tests.c
-
-__glo_register_91simple_91type_scheme_base
-: tests.c
-, test.c
-, anon.c
-
-__glo_remainder_scheme_base
-: test.c
-, tests.c
-, anon.c
-
-__glo_remove_67_srfi_1
-: tests.c
-
-__glo_remove_srfi_1
-: tests.c
-
-__glo_reverse_67_srfi_1
-: tests.c
-
-__glo_reverse_scheme_base
-: test.c
-, anon.c
-, tests.c
-
-__glo_round_191_191inline_191_191_scheme_base
-: anon.c
-, tests.c
-, test.c
-
-__glo_round_scheme_base
-: test.c
-, tests.c
-, anon.c
-
-__glo_run_91tests
-: tests.c
-
-__glo_second_srfi_1
-: tests.c
-
-__glo_seventh_srfi_1
-: tests.c
-
-__glo_sixth_srfi_1
-: tests.c
-
-__glo_slot_91ref_scheme_base
-: anon.c
-, tests.c
-, test.c
-
-__glo_slot_91set_67_scheme_base
-: test.c
-, anon.c
-, tests.c
-
-__glo_span_67_srfi_1
-: tests.c
-
-__glo_span_srfi_1
-: tests.c
-
-__glo_split_91at_67_srfi_1
-: tests.c
-
-__glo_split_91at_srfi_1
-: tests.c
-
-__glo_sqrt_191_191inline_191_191_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_square_191_191inline_191_191_scheme_base
-: test.c
-, anon.c
-, tests.c
-
-__glo_square_scheme_base
-: tests.c
-, anon.c
-, test.c
-
-__glo_string_121_123_127_scheme_base
-: tests.c
-, test.c
-, anon.c
-
-__glo_string_121_127_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_string_123_127_scheme_base
-: test.c
-, tests.c
-, anon.c
-
-__glo_string_125_123_127_scheme_base
-: anon.c
-, tests.c
-, test.c
-
-__glo_string_125_127_scheme_base
-: tests.c
-, anon.c
-, test.c
-
-__glo_string_91_125list_scheme_base
-: anon.c
-, tests.c
-, test.c
-
-__glo_string_91_125utf8_scheme_base
-: test.c
-, anon.c
-, tests.c
-
-__glo_string_91_125vector_scheme_base
-: tests.c
-, anon.c
-, test.c
-
-__glo_string_91copy_67_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_string_91copy_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_string_91fill_67_scheme_base
-: test.c
-, tests.c
-, anon.c
-
-__glo_string_91for_91each_scheme_base
-: tests.c
-, anon.c
-, test.c
-
-__glo_string_91map_scheme_base
-: test.c
-, tests.c
-, anon.c
-
-__glo_string_scheme_base
-: test.c
-, anon.c
-, tests.c
-
-__glo_symbol_123_127_scheme_base
-: test.c
-, anon.c
-, tests.c
-
-__glo_syntax_91error_scheme_base
-: test.c
-, tests.c
-, anon.c
-
-__glo_syntax_91rules_scheme_base
-: tests.c
-, test.c
-, anon.c
-
-__glo_take_67_srfi_1
-: tests.c
-
-__glo_take_91right_srfi_1
-: tests.c
-
-__glo_take_91while_67_srfi_1
-: tests.c
-
-__glo_take_91while_srfi_1
-: tests.c
-
-__glo_take_srfi_1
-: tests.c
-
-__glo_tenth_srfi_1
-: tests.c
-
-__glo_test
-: test.c
-, anon.c
-
-__glo_test_91assert_cyclone_test
-: tests.c
-
-__glo_test_91begin_cyclone_test
-: tests.c
-
-__glo_test_91end_cyclone_test
-: tests.c
-
-__glo_test_91equal_cyclone_test
-: tests.c
-
-__glo_test_91error_cyclone_test
-: tests.c
-
-__glo_test_91exit_cyclone_test
-: tests.c
-
-__glo_test_91failure_91count_cyclone_test
-: tests.c
-
-__glo_test_91group_91inc_67_cyclone_test
-: tests.c
-
-__glo_test_91group_cyclone_test
-: tests.c
-
-__glo_test_91not_cyclone_test
-: tests.c
-
-__glo_test_91propagate_91info_cyclone_test
-: tests.c
-
-__glo_test_91run_cyclone_test
-: tests.c
-
-__glo_test_91syntax_91error_cyclone_test
-: tests.c
-
-__glo_test_91values_cyclone_test
-: tests.c
-
-__glo_test_91vars_cyclone_test
-: tests.c
-
-__glo_test_cyclone_test
-: tests.c
-
-__glo_textual_91port_127_scheme_base
-: test.c
-, tests.c
-, anon.c
-
-__glo_third_srfi_1
-: tests.c
-
-__glo_truncate_191_191inline_191_191_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_truncate_91quotient_scheme_base
-: anon.c
-, tests.c
-, test.c
-
-__glo_truncate_91remainder_scheme_base
-: tests.c
-, test.c
-, anon.c
-
-__glo_truncate_95_scheme_base
-: test.c
-, anon.c
-, tests.c
-
-__glo_truncate_scheme_base
-: anon.c
-, tests.c
-, test.c
-
-__glo_type_91slot_91offset_scheme_base
-: tests.c
-, test.c
-, anon.c
-
-__glo_unfold_91right_srfi_1
-: tests.c
-
-__glo_unfold_srfi_1
-: tests.c
-
-__glo_unless_scheme_base
-: tests.c
-, test.c
-, anon.c
-
-__glo_unzip1_srfi_1
-: tests.c
-
-__glo_unzip2_srfi_1
-: tests.c
-
-__glo_unzip3_srfi_1
-: tests.c
-
-__glo_unzip4_srfi_1
-: tests.c
-
-__glo_unzip5_srfi_1
-: tests.c
-
-__glo_utf8_91_125string_scheme_base
-: anon.c
-, tests.c
-, test.c
-
-__glo_values_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_vector_91_125list_scheme_base
-: tests.c
-, anon.c
-, test.c
-
-__glo_vector_91_125string_scheme_base
-: tests.c
-, anon.c
-, test.c
-
-__glo_vector_91append_scheme_base
-: tests.c
-, test.c
-, anon.c
-
-__glo_vector_91copy_67_scheme_base
-: test.c
-, tests.c
-, anon.c
-
-__glo_vector_91copy_scheme_base
-: tests.c
-, anon.c
-, test.c
-
-__glo_vector_91fill_67_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_vector_91for_91each_scheme_base
-: test.c
-, anon.c
-, tests.c
-
-__glo_vector_91map_scheme_base
-: anon.c
-, tests.c
-, test.c
-
-__glo_vector_scheme_base
-: tests.c
-, test.c
-, anon.c
-
-__glo_void_191_191inline_191_191_scheme_base
-: tests.c
-, test.c
-, anon.c
-
-__glo_warning_cyclone_test
-: tests.c
-
-__glo_when_scheme_base
-: test.c
-, tests.c
-, anon.c
-
-__glo_with_91exception_91handler_scheme_base
-: tests.c
-, test.c
-, anon.c
-
-__glo_with_91handler_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_write_91bytevector_scheme_base
-: tests.c
-, anon.c
-, test.c
-
-__glo_write_91char_scheme_base
-: test.c
-, tests.c
-, anon.c
-
-__glo_write_91shared_scheme_write
-: anon.c
-, test.c
-, tests.c
-
-__glo_write_91simple_scheme_write
-: tests.c
-, anon.c
-, test.c
-
-__glo_write_91string_911_scheme_base
-: anon.c
-, tests.c
-, test.c
-
-__glo_write_91string_912_scheme_base
-: tests.c
-, anon.c
-, test.c
-
-__glo_write_91string_scheme_base
-: tests.c
-, anon.c
-, test.c
-
-__glo_write_91u8_scheme_base
-: tests.c
-, anon.c
-, test.c
-
-__glo_write_scheme_write
-: tests.c
-, test.c
-, anon.c
-
-__glo_xcons_srfi_1
-: tests.c
-
-__glo_zero_127_191_191inline_191_191_scheme_base
-: anon.c
-, test.c
-, tests.c
-
-__glo_zero_127_scheme_base
-: tests.c
-, anon.c
-, test.c
-
-__glo_zip_srfi_1
-: tests.c
-
+ - _ -
@@ -1665,7 +80,7 @@ $(function() {
diff --git a/c-api/globals_vars_b.html b/c-api/globals_vars_b.html
index f37f1eb5..68a1d35e 100644
--- a/c-api/globals_vars_b.html
+++ b/c-api/globals_vars_b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -77,7 +80,7 @@ $(function() {
diff --git a/c-api/globals_vars_c.html b/c-api/globals_vars_c.html
index 90d2889d..afda1dd8 100644
--- a/c-api/globals_vars_c.html
+++ b/c-api/globals_vars_c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -76,12 +79,16 @@ $(function() {
, runtime.c
Cyc_global_variables
-: runtime.h
-, runtime.c
+: runtime.c
+, runtime.h
+
+Cyc_RECORD_MARKER
+: runtime.c
+, runtime.h
Cyc_VOID
-: runtime.c
-, runtime.h
+: runtime.h
+, runtime.c
@@ -89,7 +96,7 @@ $(function() {
diff --git a/c-api/globals_vars_e.html b/c-api/globals_vars_e.html
index 0e44156b..c41d3a37 100644
--- a/c-api/globals_vars_e.html
+++ b/c-api/globals_vars_e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -72,7 +75,7 @@ $(function() {
diff --git a/c-api/globals_vars_g.html b/c-api/globals_vars_g.html
index fd1ade98..27b3ed72 100644
--- a/c-api/globals_vars_g.html
+++ b/c-api/globals_vars_g.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -79,7 +82,7 @@ $(function() {
diff --git a/c-api/globals_vars_p.html b/c-api/globals_vars_p.html
index 1f98da52..6dd05790 100644
--- a/c-api/globals_vars_p.html
+++ b/c-api/globals_vars_p.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -593,7 +596,7 @@ $(function() {
diff --git a/c-api/globals_vars_q.html b/c-api/globals_vars_q.html
index d07ba328..6d737874 100644
--- a/c-api/globals_vars_q.html
+++ b/c-api/globals_vars_q.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -73,7 +76,7 @@ $(function() {
diff --git a/c-api/globals_vars_t.html b/c-api/globals_vars_t.html
index 79a2afae..4d030513 100644
--- a/c-api/globals_vars_t.html
+++ b/c-api/globals_vars_t.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -72,7 +75,7 @@ $(function() {
diff --git a/c-api/group__datatypes.html b/c-api/group__datatypes.html
index 2d63e460..7565571b 100644
--- a/c-api/group__datatypes.html
+++ b/c-api/group__datatypes.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Data types
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -86,7 +89,7 @@ Modules
diff --git a/c-api/group__ffi.html b/c-api/group__ffi.html
index f0b6808e..0834e174 100644
--- a/c-api/group__ffi.html
+++ b/c-api/group__ffi.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Foreign Function Interface
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -80,7 +83,7 @@ Functions
diff --git a/c-api/group__ffi_ga3aac0ffa4f1c1e7bd553c500ff6f01ee.html b/c-api/group__ffi_ga3aac0ffa4f1c1e7bd553c500ff6f01ee.html
index e1a2ab96..53168933 100644
--- a/c-api/group__ffi_ga3aac0ffa4f1c1e7bd553c500ff6f01ee.html
+++ b/c-api/group__ffi_ga3aac0ffa4f1c1e7bd553c500ff6f01ee.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_scm_call
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__ffi_ga4064c688a8258b61b9aa7134bc1c04be.html b/c-api/group__ffi_ga4064c688a8258b61b9aa7134bc1c04be.html
index 2f675f27..dbc3b983 100644
--- a/c-api/group__ffi_ga4064c688a8258b61b9aa7134bc1c04be.html
+++ b/c-api/group__ffi_ga4064c688a8258b61b9aa7134bc1c04be.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_scm_call_no_gc
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc.html b/c-api/group__gc.html
index 328535fb..9ebbd054 100644
--- a/c-api/group__gc.html
+++ b/c-api/group__gc.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Garbage collection
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -87,7 +90,7 @@ Modules
diff --git a/c-api/group__gc__major.html b/c-api/group__gc__major.html
index 4db1e220..716c456f 100644
--- a/c-api/group__gc__major.html
+++ b/c-api/group__gc__major.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Major GC
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -327,11 +330,13 @@ Functions
Major GC is responsible for removing unused objects from the heap.
+
+#define stack_overflow(x, y)
Definition: types.h:517
diff --git a/c-api/group__gc__major_ga0130fd86d5e48f8949b9484adc73527f.html b/c-api/group__gc__major_ga0130fd86d5e48f8949b9484adc73527f.html
index c72daa63..7574fd81 100644
--- a/c-api/group__gc__major_ga0130fd86d5e48f8949b9484adc73527f.html
+++ b/c-api/group__gc__major_ga0130fd86d5e48f8949b9484adc73527f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_add_new_unrunning_mutator
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga03f615fc49a1a8b77f50f215ba19aafb.html b/c-api/group__gc__major_ga03f615fc49a1a8b77f50f215ba19aafb.html
index 665e94f7..413a8054 100644
--- a/c-api/group__gc__major_ga03f615fc49a1a8b77f50f215ba19aafb.html
+++ b/c-api/group__gc__major_ga03f615fc49a1a8b77f50f215ba19aafb.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_is_stack_obj
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: stack_overflow(((
object )obj), ((
object )((
gc_thread_data *)thd)->stack_start)))
-
#define stack_overflow(x, y)
Definition: types.h:516
+
Value:
+
stack_overflow(((
object )obj), ((
object )((
gc_thread_data *)thd)->stack_start)))
Determine if object lives on the thread's stack.
Parameters
@@ -202,11 +205,13 @@ $(function() {
+
+
#define stack_overflow(x, y)
Definition: types.h:517
diff --git a/c-api/group__gc__major_ga08c98f6a7999fcdcde8c21344cd51d63.html b/c-api/group__gc__major_ga08c98f6a7999fcdcde8c21344cd51d63.html
index 5f40d6bb..8131141a 100644
--- a/c-api/group__gc__major_ga08c98f6a7999fcdcde8c21344cd51d63.html
+++ b/c-api/group__gc__major_ga08c98f6a7999fcdcde8c21344cd51d63.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: return_thread_runnable
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga0a33ee3f5c77cf4b03b37e0ba3308070.html b/c-api/group__gc__major_ga0a33ee3f5c77cf4b03b37e0ba3308070.html
index 9d267ecb..fe0ae3f5 100644
--- a/c-api/group__gc__major_ga0a33ee3f5c77cf4b03b37e0ba3308070.html
+++ b/c-api/group__gc__major_ga0a33ee3f5c77cf4b03b37e0ba3308070.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_stage_type
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga0fb8dad1f1f37fed6972019da198edba.html b/c-api/group__gc__major_ga0fb8dad1f1f37fed6972019da198edba.html
index 0718a39e..ffec3a9e 100644
--- a/c-api/group__gc__major_ga0fb8dad1f1f37fed6972019da198edba.html
+++ b/c-api/group__gc__major_ga0fb8dad1f1f37fed6972019da198edba.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_heap_create_rest
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga1091a8b18fc274af25f5155e3bf7a1ff.html b/c-api/group__gc__major_ga1091a8b18fc274af25f5155e3bf7a1ff.html
index 195c6dd9..c7fa33e5 100644
--- a/c-api/group__gc__major_ga1091a8b18fc274af25f5155e3bf7a1ff.html
+++ b/c-api/group__gc__major_ga1091a8b18fc274af25f5155e3bf7a1ff.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_remove_mutator
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga11081c291bf7b8ca714d6ba09e0912d7.html b/c-api/group__gc__major_ga11081c291bf7b8ca714d6ba09e0912d7.html
index c81e5592..b6e189c7 100644
--- a/c-api/group__gc__major_ga11081c291bf7b8ca714d6ba09e0912d7.html
+++ b/c-api/group__gc__major_ga11081c291bf7b8ca714d6ba09e0912d7.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: GC_COLLECTION_THRESHOLD
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga15186c504a0fb0727cd7d405b0b2d9a5.html b/c-api/group__gc__major_ga15186c504a0fb0727cd7d405b0b2d9a5.html
index 9758c9ca..201a5756 100644
--- a/c-api/group__gc__major_ga15186c504a0fb0727cd7d405b0b2d9a5.html
+++ b/c-api/group__gc__major_ga15186c504a0fb0727cd7d405b0b2d9a5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_copy_obj
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga197294109a9a037b9a6641ce41ff9608.html b/c-api/group__gc__major_ga197294109a9a037b9a6641ce41ff9608.html
index 34ed27e6..eba2be2d 100644
--- a/c-api/group__gc__major_ga197294109a9a037b9a6641ce41ff9608.html
+++ b/c-api/group__gc__major_ga197294109a9a037b9a6641ce41ff9608.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cyc_thread_state_type
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga19a038b66ee68027da994697344ad5e7.html b/c-api/group__gc__major_ga19a038b66ee68027da994697344ad5e7.html
index 29db653f..6efc2f26 100644
--- a/c-api/group__gc__major_ga19a038b66ee68027da994697344ad5e7.html
+++ b/c-api/group__gc__major_ga19a038b66ee68027da994697344ad5e7.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_heap_create
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga1b45302695680930829cac31d65e41e1.html b/c-api/group__gc__major_ga1b45302695680930829cac31d65e41e1.html
index 783b09da..3df4c03a 100644
--- a/c-api/group__gc__major_ga1b45302695680930829cac31d65e41e1.html
+++ b/c-api/group__gc__major_ga1b45302695680930829cac31d65e41e1.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: HEAP_SIZE
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga2031d7ff5d1678d2aa7954c5fa3b989e.html b/c-api/group__gc__major_ga2031d7ff5d1678d2aa7954c5fa3b989e.html
index 2ae6bc70..a19a1b58 100644
--- a/c-api/group__gc__major_ga2031d7ff5d1678d2aa7954c5fa3b989e.html
+++ b/c-api/group__gc__major_ga2031d7ff5d1678d2aa7954c5fa3b989e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_merge_all_heaps
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga20cf7c4fac92c3cb1adb025813ea2a99.html b/c-api/group__gc__major_ga20cf7c4fac92c3cb1adb025813ea2a99.html
index bb26f1a3..a8141a4a 100644
--- a/c-api/group__gc__major_ga20cf7c4fac92c3cb1adb025813ea2a99.html
+++ b/c-api/group__gc__major_ga20cf7c4fac92c3cb1adb025813ea2a99.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_handshake
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga2118e3b31300a7ddcd96c95e218f862e.html b/c-api/group__gc__major_ga2118e3b31300a7ddcd96c95e218f862e.html
index ff9eb52f..cf0c6106 100644
--- a/c-api/group__gc__major_ga2118e3b31300a7ddcd96c95e218f862e.html
+++ b/c-api/group__gc__major_ga2118e3b31300a7ddcd96c95e218f862e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_print_stats
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga21b50029124a435e12dd1fb97f1f4275.html b/c-api/group__gc__major_ga21b50029124a435e12dd1fb97f1f4275.html
index 6741e619..d715c273 100644
--- a/c-api/group__gc__major_ga21b50029124a435e12dd1fb97f1f4275.html
+++ b/c-api/group__gc__major_ga21b50029124a435e12dd1fb97f1f4275.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_color_blue
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga21e9a50a7de06a81cbcc934bd8e4809c.html b/c-api/group__gc__major_ga21e9a50a7de06a81cbcc934bd8e4809c.html
index 7c0707d6..14491755 100644
--- a/c-api/group__gc__major_ga21e9a50a7de06a81cbcc934bd8e4809c.html
+++ b/c-api/group__gc__major_ga21e9a50a7de06a81cbcc934bd8e4809c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_initialize
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga24af05ed1aef52dcba9177511705682d.html b/c-api/group__gc__major_ga24af05ed1aef52dcba9177511705682d.html
index 0bc8f551..b19469b1 100644
--- a/c-api/group__gc__major_ga24af05ed1aef52dcba9177511705682d.html
+++ b/c-api/group__gc__major_ga24af05ed1aef52dcba9177511705682d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: mark
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga2f62288e6f57fe9fbff4bae5bd782e44.html b/c-api/group__gc__major_ga2f62288e6f57fe9fbff4bae5bd782e44.html
index 8584cdb3..080986ea 100644
--- a/c-api/group__gc__major_ga2f62288e6f57fe9fbff4bae5bd782e44.html
+++ b/c-api/group__gc__major_ga2f62288e6f57fe9fbff4bae5bd782e44.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_allocated_bytes
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga3b71c9fc8fc2cf70245c1b7d3216cc81.html b/c-api/group__gc__major_ga3b71c9fc8fc2cf70245c1b7d3216cc81.html
index 5a63f147..e15bd2fe 100644
--- a/c-api/group__gc__major_ga3b71c9fc8fc2cf70245c1b7d3216cc81.html
+++ b/c-api/group__gc__major_ga3b71c9fc8fc2cf70245c1b7d3216cc81.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: return_thread_runnable_with_obj
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga3f7f46c237ce7bc10de3b19696b16d37.html b/c-api/group__gc__major_ga3f7f46c237ce7bc10de3b19696b16d37.html
index 689c740a..09a973b1 100644
--- a/c-api/group__gc__major_ga3f7f46c237ce7bc10de3b19696b16d37.html
+++ b/c-api/group__gc__major_ga3f7f46c237ce7bc10de3b19696b16d37.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_sweep
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga4074eefce64a43efc40de89bc9595c9b.html b/c-api/group__gc__major_ga4074eefce64a43efc40de89bc9595c9b.html
index 4c9bb198..29825385 100644
--- a/c-api/group__gc__major_ga4074eefce64a43efc40de89bc9595c9b.html
+++ b/c-api/group__gc__major_ga4074eefce64a43efc40de89bc9595c9b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_color_red
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga452874caf46453570916da23c202eaff.html b/c-api/group__gc__major_ga452874caf46453570916da23c202eaff.html
index 4a10605e..da795445 100644
--- a/c-api/group__gc__major_ga452874caf46453570916da23c202eaff.html
+++ b/c-api/group__gc__major_ga452874caf46453570916da23c202eaff.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_is_mutator_active
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga46abf2c7ce2ba5280e0f0640056a561f.html b/c-api/group__gc__major_ga46abf2c7ce2ba5280e0f0640056a561f.html
index 8f5e196f..7ea4959e 100644
--- a/c-api/group__gc__major_ga46abf2c7ce2ba5280e0f0640056a561f.html
+++ b/c-api/group__gc__major_ga46abf2c7ce2ba5280e0f0640056a561f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_is_mutator_new
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga46bc54c66f56b0006420ce310c2729c1.html b/c-api/group__gc__major_ga46bc54c66f56b0006420ce310c2729c1.html
index 3adc6e76..15a327cd 100644
--- a/c-api/group__gc__major_ga46bc54c66f56b0006420ce310c2729c1.html
+++ b/c-api/group__gc__major_ga46bc54c66f56b0006420ce310c2729c1.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_thr_grow_move_buffer
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga49b4b302173834eb0ff3224ef7426322.html b/c-api/group__gc__major_ga49b4b302173834eb0ff3224ef7426322.html
index a4510906..9835e9f3 100644
--- a/c-api/group__gc__major_ga49b4b302173834eb0ff3224ef7426322.html
+++ b/c-api/group__gc__major_ga49b4b302173834eb0ff3224ef7426322.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: LAST_FIXED_SIZE_HEAP_TYPE
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga4a76a44b90e6c0443bf2c5150c91d168.html b/c-api/group__gc__major_ga4a76a44b90e6c0443bf2c5150c91d168.html
index ed552bb7..b1acb059 100644
--- a/c-api/group__gc__major_ga4a76a44b90e6c0443bf2c5150c91d168.html
+++ b/c-api/group__gc__major_ga4a76a44b90e6c0443bf2c5150c91d168.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: immutable
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga4c76104f4bb633c0594334508f8a19b1.html b/c-api/group__gc__major_ga4c76104f4bb633c0594334508f8a19b1.html
index 1f4656cd..441ccae5 100644
--- a/c-api/group__gc__major_ga4c76104f4bb633c0594334508f8a19b1.html
+++ b/c-api/group__gc__major_ga4c76104f4bb633c0594334508f8a19b1.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_empty_collector_stack
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga506d5fadc6ed572bbb11b122193ea36d.html b/c-api/group__gc__major_ga506d5fadc6ed572bbb11b122193ea36d.html
index ea7da504..3b2e5dac 100644
--- a/c-api/group__gc__major_ga506d5fadc6ed572bbb11b122193ea36d.html
+++ b/c-api/group__gc__major_ga506d5fadc6ed572bbb11b122193ea36d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: GC_DEBUG_VERBOSE
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga51690b332091995ffd5c7318f569f934.html b/c-api/group__gc__major_ga51690b332091995ffd5c7318f569f934.html
index ca26e332..d5a1675a 100644
--- a/c-api/group__gc__major_ga51690b332091995ffd5c7318f569f934.html
+++ b/c-api/group__gc__major_ga51690b332091995ffd5c7318f569f934.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_wait_handshake
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga518020a5c7aeb3cdc0ad1d2155217c7d.html b/c-api/group__gc__major_ga518020a5c7aeb3cdc0ad1d2155217c7d.html
index 9aa3613f..a6e3f9fe 100644
--- a/c-api/group__gc__major_ga518020a5c7aeb3cdc0ad1d2155217c7d.html
+++ b/c-api/group__gc__major_ga518020a5c7aeb3cdc0ad1d2155217c7d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_mutator_thread_runnable
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga600c743cb3da304751627e36099445b9.html b/c-api/group__gc__major_ga600c743cb3da304751627e36099445b9.html
index fbeecf08..d1eb0173 100644
--- a/c-api/group__gc__major_ga600c743cb3da304751627e36099445b9.html
+++ b/c-api/group__gc__major_ga600c743cb3da304751627e36099445b9.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: GC_DEBUG_SHOW_SWEEP_DIAG
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga6168132cb99647f6fb0efe2fca12d3d0.html b/c-api/group__gc__major_ga6168132cb99647f6fb0efe2fca12d3d0.html
index 47e0d010..e6b6b91b 100644
--- a/c-api/group__gc__major_ga6168132cb99647f6fb0efe2fca12d3d0.html
+++ b/c-api/group__gc__major_ga6168132cb99647f6fb0efe2fca12d3d0.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_init_fixed_size_free_list
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga61dd942ed84e904a5c297fdc57fd4d7a.html b/c-api/group__gc__major_ga61dd942ed84e904a5c297fdc57fd4d7a.html
index 63174e45..bf38222d 100644
--- a/c-api/group__gc__major_ga61dd942ed84e904a5c297fdc57fd4d7a.html
+++ b/c-api/group__gc__major_ga61dd942ed84e904a5c297fdc57fd4d7a.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_heap_root
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga63112677a59a58464bc08d5ef2a91c6c.html b/c-api/group__gc__major_ga63112677a59a58464bc08d5ef2a91c6c.html
index 4df58e11..9ec38b39 100644
--- a/c-api/group__gc__major_ga63112677a59a58464bc08d5ef2a91c6c.html
+++ b/c-api/group__gc__major_ga63112677a59a58464bc08d5ef2a91c6c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_post_handshake
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga66382faf126033f74c62e4eb8a4c4cbe.html b/c-api/group__gc__major_ga66382faf126033f74c62e4eb8a4c4cbe.html
index 746ff56a..49012cff 100644
--- a/c-api/group__gc__major_ga66382faf126033f74c62e4eb8a4c4cbe.html
+++ b/c-api/group__gc__major_ga66382faf126033f74c62e4eb8a4c4cbe.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_heap_type
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga6a88578b8802b9bca9f56e0ccfdff435.html b/c-api/group__gc__major_ga6a88578b8802b9bca9f56e0ccfdff435.html
index 8002fc07..4c103399 100644
--- a/c-api/group__gc__major_ga6a88578b8802b9bca9f56e0ccfdff435.html
+++ b/c-api/group__gc__major_ga6a88578b8802b9bca9f56e0ccfdff435.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_mut_cooperate
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga734c99799a64ad0450ca6879900640f5.html b/c-api/group__gc__major_ga734c99799a64ad0450ca6879900640f5.html
index ab65474d..dd2c0e47 100644
--- a/c-api/group__gc__major_ga734c99799a64ad0450ca6879900640f5.html
+++ b/c-api/group__gc__major_ga734c99799a64ad0450ca6879900640f5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_heap
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga75b3fd7dd320d8524d0dcad79cc1eb1e.html b/c-api/group__gc__major_ga75b3fd7dd320d8524d0dcad79cc1eb1e.html
index 815004d1..d6939fc7 100644
--- a/c-api/group__gc__major_ga75b3fd7dd320d8524d0dcad79cc1eb1e.html
+++ b/c-api/group__gc__major_ga75b3fd7dd320d8524d0dcad79cc1eb1e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_status_type
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga7ca46159df2a2857a042f5b83b8903c4.html b/c-api/group__gc__major_ga7ca46159df2a2857a042f5b83b8903c4.html
index 0d436615..88de9f0b 100644
--- a/c-api/group__gc__major_ga7ca46159df2a2857a042f5b83b8903c4.html
+++ b/c-api/group__gc__major_ga7ca46159df2a2857a042f5b83b8903c4.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: GC_FREE_THRESHOLD
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga7ddd6fe9e05328fcba8ad72d34b0d440.html b/c-api/group__gc__major_ga7ddd6fe9e05328fcba8ad72d34b0d440.html
index ebd862ed..6781d356 100644
--- a/c-api/group__gc__major_ga7ddd6fe9e05328fcba8ad72d34b0d440.html
+++ b/c-api/group__gc__major_ga7ddd6fe9e05328fcba8ad72d34b0d440.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_try_alloc_slow
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga7f1dfa939185ca0cf6d194c991000185.html b/c-api/group__gc__major_ga7f1dfa939185ca0cf6d194c991000185.html
index 093ddae0..9db67f33 100644
--- a/c-api/group__gc__major_ga7f1dfa939185ca0cf6d194c991000185.html
+++ b/c-api/group__gc__major_ga7f1dfa939185ca0cf6d194c991000185.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_heap_last
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga7fac46df80136375f0aabd3af30a8874.html b/c-api/group__gc__major_ga7fac46df80136375f0aabd3af30a8874.html
index c5616343..74674a0c 100644
--- a/c-api/group__gc__major_ga7fac46df80136375f0aabd3af30a8874.html
+++ b/c-api/group__gc__major_ga7fac46df80136375f0aabd3af30a8874.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_mark_gray2
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga854e94ef5689c1c9e8f4d2a0575fe524.html b/c-api/group__gc__major_ga854e94ef5689c1c9e8f4d2a0575fe524.html
index 1777da84..9342a2ac 100644
--- a/c-api/group__gc__major_ga854e94ef5689c1c9e8f4d2a0575fe524.html
+++ b/c-api/group__gc__major_ga854e94ef5689c1c9e8f4d2a0575fe524.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_make_shared_object
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga8ad4f86ac2faead935b6cb4d4b87a6bb.html b/c-api/group__gc__major_ga8ad4f86ac2faead935b6cb4d4b87a6bb.html
index 5a8e8826..ab791add 100644
--- a/c-api/group__gc__major_ga8ad4f86ac2faead935b6cb4d4b87a6bb.html
+++ b/c-api/group__gc__major_ga8ad4f86ac2faead935b6cb4d4b87a6bb.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_grow_heap
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga91caaa8e3c877e2780b365e593bbfef9.html b/c-api/group__gc__major_ga91caaa8e3c877e2780b365e593bbfef9.html
index 925dd1d9..93956e06 100644
--- a/c-api/group__gc__major_ga91caaa8e3c877e2780b365e593bbfef9.html
+++ b/c-api/group__gc__major_ga91caaa8e3c877e2780b365e593bbfef9.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: GROW_HEAP_BY_SIZE
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga9427b1684a8ab0eba8315606d67709ed.html b/c-api/group__gc__major_ga9427b1684a8ab0eba8315606d67709ed.html
index 8038fee6..847c0c71 100644
--- a/c-api/group__gc__major_ga9427b1684a8ab0eba8315606d67709ed.html
+++ b/c-api/group__gc__major_ga9427b1684a8ab0eba8315606d67709ed.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: INITIAL_HEAP_SIZE
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga969e0c6129a50134006fe4b380965cb2.html b/c-api/group__gc__major_ga969e0c6129a50134006fe4b380965cb2.html
index 3a336e9c..19734a24 100644
--- a/c-api/group__gc__major_ga969e0c6129a50134006fe4b380965cb2.html
+++ b/c-api/group__gc__major_ga969e0c6129a50134006fe4b380965cb2.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: NANOSECONDS_PER_MILLISECOND
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga976021ebdbed6eb538d78c744c1ef931.html b/c-api/group__gc__major_ga976021ebdbed6eb538d78c744c1ef931.html
index 89bfca2d..f53d62bc 100644
--- a/c-api/group__gc__major_ga976021ebdbed6eb538d78c744c1ef931.html
+++ b/c-api/group__gc__major_ga976021ebdbed6eb538d78c744c1ef931.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_alloc
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga9c86247beb6521f42271c87685c41288.html b/c-api/group__gc__major_ga9c86247beb6521f42271c87685c41288.html
index 73c6d662..a1718923 100644
--- a/c-api/group__gc__major_ga9c86247beb6521f42271c87685c41288.html
+++ b/c-api/group__gc__major_ga9c86247beb6521f42271c87685c41288.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_thread_data_init
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga9dc80c9089068607718ad99e9cd77fcc.html b/c-api/group__gc__major_ga9dc80c9089068607718ad99e9cd77fcc.html
index 9ddd6692..d4ddc67c 100644
--- a/c-api/group__gc__major_ga9dc80c9089068607718ad99e9cd77fcc.html
+++ b/c-api/group__gc__major_ga9dc80c9089068607718ad99e9cd77fcc.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: NUM_HEAP_TYPES
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_ga9f71e43bf607339bc52398fb7ba3ec7d.html b/c-api/group__gc__major_ga9f71e43bf607339bc52398fb7ba3ec7d.html
index 74a142fc..cfcc4dee 100644
--- a/c-api/group__gc__major_ga9f71e43bf607339bc52398fb7ba3ec7d.html
+++ b/c-api/group__gc__major_ga9f71e43bf607339bc52398fb7ba3ec7d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_sleep_ms
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gaa1745070eb682d926f656f3017ccedda.html b/c-api/group__gc__major_gaa1745070eb682d926f656f3017ccedda.html
index 55e7c6ab..26c7ee73 100644
--- a/c-api/group__gc__major_gaa1745070eb682d926f656f3017ccedda.html
+++ b/c-api/group__gc__major_gaa1745070eb682d926f656f3017ccedda.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_mut_update
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gaa64a151f71c793be3f27b6f70c8a98bd.html b/c-api/group__gc__major_gaa64a151f71c793be3f27b6f70c8a98bd.html
index 40ad4e3e..63ee14af 100644
--- a/c-api/group__gc__major_gaa64a151f71c793be3f27b6f70c8a98bd.html
+++ b/c-api/group__gc__major_gaa64a151f71c793be3f27b6f70c8a98bd.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: GC_DEBUG_TRACE
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gaa8776e5cc0c3bf309c76dc61f0c7f838.html b/c-api/group__gc__major_gaa8776e5cc0c3bf309c76dc61f0c7f838.html
index 7b3a2744..9ad290a2 100644
--- a/c-api/group__gc__major_gaa8776e5cc0c3bf309c76dc61f0c7f838.html
+++ b/c-api/group__gc__major_gaa8776e5cc0c3bf309c76dc61f0c7f838.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_mark_gray
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gaaa9f90f7779f4220c3d358de99769860.html b/c-api/group__gc__major_gaaa9f90f7779f4220c3d358de99769860.html
index 14dc75ea..32518eeb 100644
--- a/c-api/group__gc__major_gaaa9f90f7779f4220c3d358de99769860.html
+++ b/c-api/group__gc__major_gaaa9f90f7779f4220c3d358de99769860.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: GC_COLLECT_UNDER_UNSWEPT_HEAP_COUNT
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gaac1a9d422fb7cf93b7de39bd41e0cad2.html b/c-api/group__gc__major_gaac1a9d422fb7cf93b7de39bd41e0cad2.html
index 972f6975..d81e8d78 100644
--- a/c-api/group__gc__major_gaac1a9d422fb7cf93b7de39bd41e0cad2.html
+++ b/c-api/group__gc__major_gaac1a9d422fb7cf93b7de39bd41e0cad2.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: GC_SAFETY_CHECKS
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gab4c9dba3c0f373c7a74e89e35b919fe8.html b/c-api/group__gc__major_gab4c9dba3c0f373c7a74e89e35b919fe8.html
index e7349307..840d5508 100644
--- a/c-api/group__gc__major_gab4c9dba3c0f373c7a74e89e35b919fe8.html
+++ b/c-api/group__gc__major_gab4c9dba3c0f373c7a74e89e35b919fe8.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_heap_free
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gabbaa9e82df175595165b5309ffb360b5.html b/c-api/group__gc__major_gabbaa9e82df175595165b5309ffb360b5.html
index fb950621..9d84b46f 100644
--- a/c-api/group__gc__major_gabbaa9e82df175595165b5309ffb360b5.html
+++ b/c-api/group__gc__major_gabbaa9e82df175595165b5309ffb360b5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_mark_globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gabdf15a8d52624122c76c2ae9df4a3cdc.html b/c-api/group__gc__major_gabdf15a8d52624122c76c2ae9df4a3cdc.html
index 8b470409..645f1686 100644
--- a/c-api/group__gc__major_gabdf15a8d52624122c76c2ae9df4a3cdc.html
+++ b/c-api/group__gc__major_gabdf15a8d52624122c76c2ae9df4a3cdc.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: MAX_STACK_TRACES
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gabebf61106ee21a438dcb21fc8a9fb05b.html b/c-api/group__gc__major_gabebf61106ee21a438dcb21fc8a9fb05b.html
index 5b353991..a9720d24 100644
--- a/c-api/group__gc__major_gabebf61106ee21a438dcb21fc8a9fb05b.html
+++ b/c-api/group__gc__major_gabebf61106ee21a438dcb21fc8a9fb05b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_heap_merge
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gabf9a3adddd986f1f953d4ddc1c795491.html b/c-api/group__gc__major_gabf9a3adddd986f1f953d4ddc1c795491.html
index c17223c8..fb8a4ed7 100644
--- a/c-api/group__gc__major_gabf9a3adddd986f1f953d4ddc1c795491.html
+++ b/c-api/group__gc__major_gabf9a3adddd986f1f953d4ddc1c795491.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_thread_data_free
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gac419c2d517d0ad216fbe22003ff4b56a.html b/c-api/group__gc__major_gac419c2d517d0ad216fbe22003ff4b56a.html
index 2622bcac..f9fd3145 100644
--- a/c-api/group__gc__major_gac419c2d517d0ad216fbe22003ff4b56a.html
+++ b/c-api/group__gc__major_gac419c2d517d0ad216fbe22003ff4b56a.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: mark_buffer
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gac5dc8552660d7975bbdf83c59e6c5dd3.html b/c-api/group__gc__major_gac5dc8552660d7975bbdf83c59e6c5dd3.html
index 0e1c6664..89842535 100644
--- a/c-api/group__gc__major_gac5dc8552660d7975bbdf83c59e6c5dd3.html
+++ b/c-api/group__gc__major_gac5dc8552660d7975bbdf83c59e6c5dd3.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_init_heap
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gacdd780abddd9b089bc19771035890bf5.html b/c-api/group__gc__major_gacdd780abddd9b089bc19771035890bf5.html
index 005efcaa..5df809b0 100644
--- a/c-api/group__gc__major_gacdd780abddd9b089bc19771035890bf5.html
+++ b/c-api/group__gc__major_gacdd780abddd9b089bc19771035890bf5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_start_collector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gacea6ed984e3adb3732ab049daa962436.html b/c-api/group__gc__major_gacea6ed984e3adb3732ab049daa962436.html
index 1383bc0e..e0968c15 100644
--- a/c-api/group__gc__major_gacea6ed984e3adb3732ab049daa962436.html
+++ b/c-api/group__gc__major_gacea6ed984e3adb3732ab049daa962436.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_try_alloc_rest
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gad09673fe7b5673515705b6a821648cbe.html b/c-api/group__gc__major_gad09673fe7b5673515705b6a821648cbe.html
index 8dfed904..bd5d8941 100644
--- a/c-api/group__gc__major_gad09673fe7b5673515705b6a821648cbe.html
+++ b/c-api/group__gc__major_gad09673fe7b5673515705b6a821648cbe.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: DEBUG_SHOW_DIAG
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gad107cf5b38c74e2cd84a8159940b6579.html b/c-api/group__gc__major_gad107cf5b38c74e2cd84a8159940b6579.html
index fec60cfa..6177d4dc 100644
--- a/c-api/group__gc__major_gad107cf5b38c74e2cd84a8159940b6579.html
+++ b/c-api/group__gc__major_gad107cf5b38c74e2cd84a8159940b6579.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_thread_data
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gad4cd6f03ce0fb798878fd09c44e1419f.html b/c-api/group__gc__major_gad4cd6f03ce0fb798878fd09c44e1419f.html
index 9932e944..e911f2ce 100644
--- a/c-api/group__gc__major_gad4cd6f03ce0fb798878fd09c44e1419f.html
+++ b/c-api/group__gc__major_gad4cd6f03ce0fb798878fd09c44e1419f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_alloc_rest
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gadb0efe9a5fa3686ffe062cb1ce16f8c1.html b/c-api/group__gc__major_gadb0efe9a5fa3686ffe062cb1ce16f8c1.html
index e29ac200..084b788e 100644
--- a/c-api/group__gc__major_gadb0efe9a5fa3686ffe062cb1ce16f8c1.html
+++ b/c-api/group__gc__major_gadb0efe9a5fa3686ffe062cb1ce16f8c1.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: set_thread_blocked
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gadcb6a768780d5c5930f8c9d3ce708c27.html b/c-api/group__gc__major_gadcb6a768780d5c5930f8c9d3ce708c27.html
index a3f8a8d3..3cdb7cd7 100644
--- a/c-api/group__gc__major_gadcb6a768780d5c5930f8c9d3ce708c27.html
+++ b/c-api/group__gc__major_gadcb6a768780d5c5930f8c9d3ce708c27.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_try_alloc
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gadd73c9a0b9b1112d6d941dee642893e7.html b/c-api/group__gc__major_gadd73c9a0b9b1112d6d941dee642893e7.html
index 50ff79e0..8187c2a1 100644
--- a/c-api/group__gc__major_gadd73c9a0b9b1112d6d941dee642893e7.html
+++ b/c-api/group__gc__major_gadd73c9a0b9b1112d6d941dee642893e7.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_collector_trace
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gadd82bcff4895bd4ca335a45109597102.html b/c-api/group__gc__major_gadd82bcff4895bd4ca335a45109597102.html
index 2d0d71f3..a16dadc5 100644
--- a/c-api/group__gc__major_gadd82bcff4895bd4ca335a45109597102.html
+++ b/c-api/group__gc__major_gadd82bcff4895bd4ca335a45109597102.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_add_mutator
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gadf94b852782bd0108138e3b97fc1113b.html b/c-api/group__gc__major_gadf94b852782bd0108138e3b97fc1113b.html
index 3b996c0a..386197b7 100644
--- a/c-api/group__gc__major_gadf94b852782bd0108138e3b97fc1113b.html
+++ b/c-api/group__gc__major_gadf94b852782bd0108138e3b97fc1113b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_mutator_thread_blocked
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gae4b0fc6e4b949f950ecf85d3135bfd9a.html b/c-api/group__gc__major_gae4b0fc6e4b949f950ecf85d3135bfd9a.html
index 1fc71b9a..21ee99bf 100644
--- a/c-api/group__gc__major_gae4b0fc6e4b949f950ecf85d3135bfd9a.html
+++ b/c-api/group__gc__major_gae4b0fc6e4b949f950ecf85d3135bfd9a.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_request_mark_globals
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gaec0fd25a5b345b9ad50842b08bed4027.html b/c-api/group__gc__major_gaec0fd25a5b345b9ad50842b08bed4027.html
index fb550167..bf94b4ae 100644
--- a/c-api/group__gc__major_gaec0fd25a5b345b9ad50842b08bed4027.html
+++ b/c-api/group__gc__major_gaec0fd25a5b345b9ad50842b08bed4027.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_alloc_bignum
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gaf98d32e8f592dc38f4cd01c153e91a2d.html b/c-api/group__gc__major_gaf98d32e8f592dc38f4cd01c153e91a2d.html
index 4ab0d2a2..30f01912 100644
--- a/c-api/group__gc__major_gaf98d32e8f592dc38f4cd01c153e91a2d.html
+++ b/c-api/group__gc__major_gaf98d32e8f592dc38f4cd01c153e91a2d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: grayed
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gafa9a2390e7f946a0526be8c21d3ec864.html b/c-api/group__gc__major_gafa9a2390e7f946a0526be8c21d3ec864.html
index 27d9b351..77aacbfb 100644
--- a/c-api/group__gc__major_gafa9a2390e7f946a0526be8c21d3ec864.html
+++ b/c-api/group__gc__major_gafa9a2390e7f946a0526be8c21d3ec864.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_header_type
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__major_gafcdb2c9fc0d53c3b0971b6fe85916858.html b/c-api/group__gc__major_gafcdb2c9fc0d53c3b0971b6fe85916858.html
index f36ebdfd..ae900e1e 100644
--- a/c-api/group__gc__major_gafcdb2c9fc0d53c3b0971b6fe85916858.html
+++ b/c-api/group__gc__major_gafcdb2c9fc0d53c3b0971b6fe85916858.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_free_list
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__minor.html b/c-api/group__gc__minor.html
index dd2d890a..29e5a1d4 100644
--- a/c-api/group__gc__minor.html
+++ b/c-api/group__gc__minor.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Minor GC
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -108,7 +111,7 @@ Functions
diff --git a/c-api/group__gc__minor__mut.html b/c-api/group__gc__minor__mut.html
index 30cd5b67..faba7e19 100644
--- a/c-api/group__gc__minor__mut.html
+++ b/c-api/group__gc__minor__mut.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Mutation table
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -84,7 +87,7 @@ Functions
diff --git a/c-api/group__gc__minor__mut_ga1953438da8924d23272aaff9e1b71da5.html b/c-api/group__gc__minor__mut_ga1953438da8924d23272aaff9e1b71da5.html
index ae1b8b2c..3ec3085b 100644
--- a/c-api/group__gc__minor__mut_ga1953438da8924d23272aaff9e1b71da5.html
+++ b/c-api/group__gc__minor__mut_ga1953438da8924d23272aaff9e1b71da5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: clear_mutations
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__minor__mut_gaedb21cc58a4f6fbe32f89a810d4b4928.html b/c-api/group__gc__minor__mut_gaedb21cc58a4f6fbe32f89a810d4b4928.html
index 7c6c31e2..ae80a8be 100644
--- a/c-api/group__gc__minor__mut_gaedb21cc58a4f6fbe32f89a810d4b4928.html
+++ b/c-api/group__gc__minor__mut_gaedb21cc58a4f6fbe32f89a810d4b4928.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: add_mutation
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__minor__sh__obj.html b/c-api/group__gc__minor__sh__obj.html
index 4559ee77..abc6ca3b 100644
--- a/c-api/group__gc__minor__sh__obj.html
+++ b/c-api/group__gc__minor__sh__obj.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Shared object write barrier
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -82,7 +85,7 @@ Functions
diff --git a/c-api/group__gc__minor__sh__obj_gadcef32b0b5ee9c91f6748817015c67f7.html b/c-api/group__gc__minor__sh__obj_gadcef32b0b5ee9c91f6748817015c67f7.html
index a82519ed..c26c8259 100644
--- a/c-api/group__gc__minor__sh__obj_gadcef32b0b5ee9c91f6748817015c67f7.html
+++ b/c-api/group__gc__minor__sh__obj_gadcef32b0b5ee9c91f6748817015c67f7.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: transport_stack_value
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__minor_ga6423a880df59733d2d9b509c7718d3a9.html b/c-api/group__gc__minor_ga6423a880df59733d2d9b509c7718d3a9.html
index 22c73b41..db047c11 100644
--- a/c-api/group__gc__minor_ga6423a880df59733d2d9b509c7718d3a9.html
+++ b/c-api/group__gc__minor_ga6423a880df59733d2d9b509c7718d3a9.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: STACK_SIZE
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__minor_ga6def33d1502c7cc29af70434e1abeb9a.html b/c-api/group__gc__minor_ga6def33d1502c7cc29af70434e1abeb9a.html
index eab2f0b0..25d834bb 100644
--- a/c-api/group__gc__minor_ga6def33d1502c7cc29af70434e1abeb9a.html
+++ b/c-api/group__gc__minor_ga6def33d1502c7cc29af70434e1abeb9a.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: stack_overflow
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__minor_ga74eb6f5e63c29e2e1c6fb51e2f3cd02f.html b/c-api/group__gc__minor_ga74eb6f5e63c29e2e1c6fb51e2f3cd02f.html
index f093cb2a..812bfb1f 100644
--- a/c-api/group__gc__minor_ga74eb6f5e63c29e2e1c6fb51e2f3cd02f.html
+++ b/c-api/group__gc__minor_ga74eb6f5e63c29e2e1c6fb51e2f3cd02f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: MAX_STACK_OBJ
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__minor_ga7619d880bd322d5f7085598d16e9b0c4.html b/c-api/group__gc__minor_ga7619d880bd322d5f7085598d16e9b0c4.html
index 458a687f..3a497e9b 100644
--- a/c-api/group__gc__minor_ga7619d880bd322d5f7085598d16e9b0c4.html
+++ b/c-api/group__gc__minor_ga7619d880bd322d5f7085598d16e9b0c4.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: gc_minor
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__minor_ga7b57d90c415add9dcf7a6b51db6cfdbe.html b/c-api/group__gc__minor_ga7b57d90c415add9dcf7a6b51db6cfdbe.html
index 2a1db667..85d4f602 100644
--- a/c-api/group__gc__minor_ga7b57d90c415add9dcf7a6b51db6cfdbe.html
+++ b/c-api/group__gc__minor_ga7b57d90c415add9dcf7a6b51db6cfdbe.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: STACK_GROWTH_IS_DOWNWARD
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__minor_gac1a5aac97445f3b7aca4864d9509f73e.html b/c-api/group__gc__minor_gac1a5aac97445f3b7aca4864d9509f73e.html
index 4c3568e5..dd191400 100644
--- a/c-api/group__gc__minor_gac1a5aac97445f3b7aca4864d9509f73e.html
+++ b/c-api/group__gc__minor_gac1a5aac97445f3b7aca4864d9509f73e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: GC
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__gc__minor_gad490130a8c0a326ba65a584efff981d4.html b/c-api/group__gc__minor_gad490130a8c0a326ba65a584efff981d4.html
index a085a157..7ff870a4 100644
--- a/c-api/group__gc__minor_gad490130a8c0a326ba65a584efff981d4.html
+++ b/c-api/group__gc__minor_gad490130a8c0a326ba65a584efff981d4.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: NUM_GC_ARGS
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__immediates.html b/c-api/group__immediates.html
index cec0c987..f9d63d4d 100644
--- a/c-api/group__immediates.html
+++ b/c-api/group__immediates.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Immediate objects
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -114,7 +117,7 @@ Typedefs
diff --git a/c-api/group__immediates_ga12581fdcaf8eca4346df3d519046e253.html b/c-api/group__immediates_ga12581fdcaf8eca4346df3d519046e253.html
index 35ccaeac..d9e4e26a 100644
--- a/c-api/group__immediates_ga12581fdcaf8eca4346df3d519046e253.html
+++ b/c-api/group__immediates_ga12581fdcaf8eca4346df3d519046e253.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: obj_is_int
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__immediates_ga1795bbf724aa995adcfd886242d42be3.html b/c-api/group__immediates_ga1795bbf724aa995adcfd886242d42be3.html
index 73938ffd..c4712669 100644
--- a/c-api/group__immediates_ga1795bbf724aa995adcfd886242d42be3.html
+++ b/c-api/group__immediates_ga1795bbf724aa995adcfd886242d42be3.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: char_type
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__immediates_ga22f35d58167c6490d581528a564de8fe.html b/c-api/group__immediates_ga22f35d58167c6490d581528a564de8fe.html
index 68c7588d..9de2f30f 100644
--- a/c-api/group__immediates_ga22f35d58167c6490d581528a564de8fe.html
+++ b/c-api/group__immediates_ga22f35d58167c6490d581528a564de8fe.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: obj_int2obj
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__immediates_ga2ccdc7b4c0eea0bab0fd75ca52ab08a5.html b/c-api/group__immediates_ga2ccdc7b4c0eea0bab0fd75ca52ab08a5.html
index 03777624..a83bf8a5 100644
--- a/c-api/group__immediates_ga2ccdc7b4c0eea0bab0fd75ca52ab08a5.html
+++ b/c-api/group__immediates_ga2ccdc7b4c0eea0bab0fd75ca52ab08a5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: obj_is_char
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__immediates_ga52e61d0dd752e0899cbec91cfc925f8f.html b/c-api/group__immediates_ga52e61d0dd752e0899cbec91cfc925f8f.html
index 980f221c..5e2ea4bc 100644
--- a/c-api/group__immediates_ga52e61d0dd752e0899cbec91cfc925f8f.html
+++ b/c-api/group__immediates_ga52e61d0dd752e0899cbec91cfc925f8f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: CYC_FIXNUM_MIN
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__immediates_ga57936aa324ea2422e81e7f3315caf8cc.html b/c-api/group__immediates_ga57936aa324ea2422e81e7f3315caf8cc.html
index bc9a5de3..9a674e74 100644
--- a/c-api/group__immediates_ga57936aa324ea2422e81e7f3315caf8cc.html
+++ b/c-api/group__immediates_ga57936aa324ea2422e81e7f3315caf8cc.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: is_object_type
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__immediates_ga6476992ed7a19d5ea31e0dbded085a66.html b/c-api/group__immediates_ga6476992ed7a19d5ea31e0dbded085a66.html
index 2939a1a5..658ce03c 100644
--- a/c-api/group__immediates_ga6476992ed7a19d5ea31e0dbded085a66.html
+++ b/c-api/group__immediates_ga6476992ed7a19d5ea31e0dbded085a66.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: obj_obj2char
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__immediates_ga91fe9537fe0d1c32e03cb1b8ebf5ed88.html b/c-api/group__immediates_ga91fe9537fe0d1c32e03cb1b8ebf5ed88.html
index fe84ea9b..43e0cde4 100644
--- a/c-api/group__immediates_ga91fe9537fe0d1c32e03cb1b8ebf5ed88.html
+++ b/c-api/group__immediates_ga91fe9537fe0d1c32e03cb1b8ebf5ed88.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: CYC_FIXNUM_MAX
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__immediates_ga9e32dd92edfac772bf586c77be4334fc.html b/c-api/group__immediates_ga9e32dd92edfac772bf586c77be4334fc.html
index b53352e8..b27448a0 100644
--- a/c-api/group__immediates_ga9e32dd92edfac772bf586c77be4334fc.html
+++ b/c-api/group__immediates_ga9e32dd92edfac772bf586c77be4334fc.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: obj_obj2int
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__immediates_gaef8292a2af87ee008b7f938203b8c0b4.html b/c-api/group__immediates_gaef8292a2af87ee008b7f938203b8c0b4.html
index 3d8a1644..2f4301d3 100644
--- a/c-api/group__immediates_gaef8292a2af87ee008b7f938203b8c0b4.html
+++ b/c-api/group__immediates_gaef8292a2af87ee008b7f938203b8c0b4.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: obj_char2obj
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__immediates_gafc6af90619bb95334e37d574a14e4cd5.html b/c-api/group__immediates_gafc6af90619bb95334e37d574a14e4cd5.html
index 6b33ab14..9fd54006 100644
--- a/c-api/group__immediates_gafc6af90619bb95334e37d574a14e4cd5.html
+++ b/c-api/group__immediates_gafc6af90619bb95334e37d574a14e4cd5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: is_value_type
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects.html b/c-api/group__objects.html
index 28d39f81..120e9dd3 100644
--- a/c-api/group__objects.html
+++ b/c-api/group__objects.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Objects
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -304,10 +307,8 @@ Typedefs
typedef cvar_type * cvar
-typedef void(* function_type ) ()
-
-typedef void(* function_type_va ) (int, object , object , object ,...)
-
+typedef void(* function_type ) (void *data, object clo, int argc, object *args)
+
typedef object (* inline_function_type ) ()
typedef pair_type * list
@@ -322,6 +323,8 @@ Typedefs
typedef primitive_type * primitive
+typedef void(* primitive_function_type ) (void *data, object cont, object args)
+
typedef symbol_type * symbol
typedef unsigned char tag_type
@@ -370,7 +373,9 @@ Enumerations
vector_tag = 20,
complex_num_tag = 21,
atomic_tag = 22,
-void_tag = 23
+void_tag = 23,
+
+ record_tag = 24
}
@@ -383,6 +388,8 @@ Variables
const object Cyc_EOF
+const object Cyc_RECORD_MARKER
+
const object Cyc_VOID
const object quote_void
@@ -394,11 +401,68 @@ Variables
Each object type contains a header for garbage collection and a tag that identifies the type of object, as well as any object-specific fields.
Most object types are allocated on the nursery (the C stack) and relocated to the garbage-collected heap during minor GC. It is only safe for an object on the nursery to be used by the thread that created it, as that object could be relocated at any time.
+void * gc_alloc(gc_heap_root *h, size_t size, char *obj, gc_thread_data *thd, int *heap_grown)
Allocate memory on the heap for an object.
Definition: gc.c:1360
+bytevector_type * bytevector
Definition: types.h:1215
+@ vector_tag
Definition: types.h:69
+A closed-over function with no variables.
Definition: types.h:1405
+Complex number.
Definition: types.h:846
+gc_header_type hdr
Definition: types.h:1413
+#define gc_color_red
Definition: types.h:297
+#define double_value(x)
Definition: types.h:910
+@ primitive_tag
Definition: types.h:66
+int num_cp
Definition: types.h:936
+gc_header_type hdr
Definition: types.h:1398
+A closed-over function with one variable.
Definition: types.h:1412
+A function built into the runtime.
Definition: types.h:1473
+The port object type.
Definition: types.h:1096
+C Opaque type - a wrapper around a pointer of any type.
Definition: types.h:702
+Vector type.
Definition: types.h:1170
+
+
+int len
Definition: types.h:937
+char * str
Definition: types.h:938
+The pair (cons) type.
Definition: types.h:1247
+
+gc_header_type hdr
Definition: types.h:878
+gc_header_type hdr
Definition: types.h:703
+gc_header_type hdr
Definition: types.h:678
+C-variable integration type - wrapper around a Cyclone object pointer.
Definition: types.h:677
+Bytevector type.
Definition: types.h:1209
+
+gc_header_type hdr
Definition: types.h:847
+Closure for a macro.
Definition: types.h:1397
+@ double_tag
Definition: types.h:58
+@ port_tag
Definition: types.h:65
+gc_header_type hdr
Definition: types.h:934
+pair_type * pair
Definition: types.h:1254
+The string type.
Definition: types.h:933
+
+#define type_of(obj)
Definition: types.h:92
+@ c_opaque_tag
Definition: types.h:55
+gc_header_type hdr
Definition: types.h:1406
+@ cvar_tag
Definition: types.h:57
+@ string_tag
Definition: types.h:67
+gc_header_type hdr
Definition: types.h:1210
+A union of all the constant-size objects.
Definition: types.h:1497
+gc_header_type hdr
Definition: types.h:1097
+gc_header_type hdr
Definition: types.h:1248
+#define MAX_STACK_OBJ
Definition: types.h:513
+@ macro_tag
Definition: types.h:52
+Double-precision floating point type, also known as a flonum.
Definition: types.h:877
+@ closure1_tag
Definition: types.h:50
+const object boolean_f
Definition: runtime.c:397
+#define CYC_IO_BUF_LEN
Definition: types.h:1119
+gc_header_type hdr
Definition: types.h:1171
+@ pair_tag
Definition: types.h:64
+int Cyc_utf8_count_code_points(uint8_t *s)
Count the number of code points in a string. Based on example code from Bjoern Hoehrmann.
Definition: runtime.c:8082
+@ closure0_tag
Definition: types.h:49
+@ bytevector_tag
Definition: types.h:54
+@ complex_num_tag
Definition: types.h:70
diff --git a/c-api/group__objects__safe__cxr.html b/c-api/group__objects__safe__cxr.html
index df905af6..8effb415 100644
--- a/c-api/group__objects__safe__cxr.html
+++ b/c-api/group__objects__safe__cxr.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Safe pair access macros
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -136,7 +139,7 @@ Macros
diff --git a/c-api/group__objects__safe__cxr_ga0e96e4604af4be9690d5fbb5bd9d4ee2.html b/c-api/group__objects__safe__cxr_ga0e96e4604af4be9690d5fbb5bd9d4ee2.html
index 68ffb5fa..95d0c188 100644
--- a/c-api/group__objects__safe__cxr_ga0e96e4604af4be9690d5fbb5bd9d4ee2.html
+++ b/c-api/group__objects__safe__cxr_ga0e96e4604af4be9690d5fbb5bd9d4ee2.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_caaddr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_ga11d7558abd4ed14a5b91a184636f0dd5.html b/c-api/group__objects__safe__cxr_ga11d7558abd4ed14a5b91a184636f0dd5.html
index 45fc9968..77c8e509 100644
--- a/c-api/group__objects__safe__cxr_ga11d7558abd4ed14a5b91a184636f0dd5.html
+++ b/c-api/group__objects__safe__cxr_ga11d7558abd4ed14a5b91a184636f0dd5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_caaar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_ga1be2501a23352efc382c2502d99bea3d.html b/c-api/group__objects__safe__cxr_ga1be2501a23352efc382c2502d99bea3d.html
index 5c054efd..9d2c575d 100644
--- a/c-api/group__objects__safe__cxr_ga1be2501a23352efc382c2502d99bea3d.html
+++ b/c-api/group__objects__safe__cxr_ga1be2501a23352efc382c2502d99bea3d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_caaadr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_ga25ba86271d52bb730f5b5c8ed85d1b83.html b/c-api/group__objects__safe__cxr_ga25ba86271d52bb730f5b5c8ed85d1b83.html
index 4e80fbb1..439af5c5 100644
--- a/c-api/group__objects__safe__cxr_ga25ba86271d52bb730f5b5c8ed85d1b83.html
+++ b/c-api/group__objects__safe__cxr_ga25ba86271d52bb730f5b5c8ed85d1b83.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_cdddr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_ga2dbaba0cfb5c10f85a686779110875a1.html b/c-api/group__objects__safe__cxr_ga2dbaba0cfb5c10f85a686779110875a1.html
index 5624dbbb..faba9ba8 100644
--- a/c-api/group__objects__safe__cxr_ga2dbaba0cfb5c10f85a686779110875a1.html
+++ b/c-api/group__objects__safe__cxr_ga2dbaba0cfb5c10f85a686779110875a1.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_cadr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_ga372003e25d9c2005478a8a1b5ad70363.html b/c-api/group__objects__safe__cxr_ga372003e25d9c2005478a8a1b5ad70363.html
index 43391a1a..9d84fd3f 100644
--- a/c-api/group__objects__safe__cxr_ga372003e25d9c2005478a8a1b5ad70363.html
+++ b/c-api/group__objects__safe__cxr_ga372003e25d9c2005478a8a1b5ad70363.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_cddadr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_ga3f5857266824cbc276ac779847ac620b.html b/c-api/group__objects__safe__cxr_ga3f5857266824cbc276ac779847ac620b.html
index 5702c271..01adc978 100644
--- a/c-api/group__objects__safe__cxr_ga3f5857266824cbc276ac779847ac620b.html
+++ b/c-api/group__objects__safe__cxr_ga3f5857266824cbc276ac779847ac620b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_caadar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_ga4861ba9b9d8bdf141e73717a5f88341c.html b/c-api/group__objects__safe__cxr_ga4861ba9b9d8bdf141e73717a5f88341c.html
index ac62d15f..f3b7a113 100644
--- a/c-api/group__objects__safe__cxr_ga4861ba9b9d8bdf141e73717a5f88341c.html
+++ b/c-api/group__objects__safe__cxr_ga4861ba9b9d8bdf141e73717a5f88341c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_cddr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_ga4ef974f9cc6654b5e7d4490e2bae85d1.html b/c-api/group__objects__safe__cxr_ga4ef974f9cc6654b5e7d4490e2bae85d1.html
index 0cf3a758..5d1094ef 100644
--- a/c-api/group__objects__safe__cxr_ga4ef974f9cc6654b5e7d4490e2bae85d1.html
+++ b/c-api/group__objects__safe__cxr_ga4ef974f9cc6654b5e7d4490e2bae85d1.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_cdaddr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_ga6131c53ce81cbc261f24bf0aa0436d76.html b/c-api/group__objects__safe__cxr_ga6131c53ce81cbc261f24bf0aa0436d76.html
index e9531d10..7a27839d 100644
--- a/c-api/group__objects__safe__cxr_ga6131c53ce81cbc261f24bf0aa0436d76.html
+++ b/c-api/group__objects__safe__cxr_ga6131c53ce81cbc261f24bf0aa0436d76.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_cadadr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_ga71ed28b6ada9cef98bd1caf5dd135dd1.html b/c-api/group__objects__safe__cxr_ga71ed28b6ada9cef98bd1caf5dd135dd1.html
index f94c2097..e371283f 100644
--- a/c-api/group__objects__safe__cxr_ga71ed28b6ada9cef98bd1caf5dd135dd1.html
+++ b/c-api/group__objects__safe__cxr_ga71ed28b6ada9cef98bd1caf5dd135dd1.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_cddar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_ga779f508de8f4dc101e34e0465e3b1e89.html b/c-api/group__objects__safe__cxr_ga779f508de8f4dc101e34e0465e3b1e89.html
index 1511b4cd..8f799e0d 100644
--- a/c-api/group__objects__safe__cxr_ga779f508de8f4dc101e34e0465e3b1e89.html
+++ b/c-api/group__objects__safe__cxr_ga779f508de8f4dc101e34e0465e3b1e89.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_cadar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_ga8a76cd2cc63ea664657691a053754672.html b/c-api/group__objects__safe__cxr_ga8a76cd2cc63ea664657691a053754672.html
index a47606ac..c9a602d5 100644
--- a/c-api/group__objects__safe__cxr_ga8a76cd2cc63ea664657691a053754672.html
+++ b/c-api/group__objects__safe__cxr_ga8a76cd2cc63ea664657691a053754672.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_caaaar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_ga8db64d24858f8093833a23280723d903.html b/c-api/group__objects__safe__cxr_ga8db64d24858f8093833a23280723d903.html
index 62ad0614..045a6054 100644
--- a/c-api/group__objects__safe__cxr_ga8db64d24858f8093833a23280723d903.html
+++ b/c-api/group__objects__safe__cxr_ga8db64d24858f8093833a23280723d903.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_caddar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_ga8dc32c35ee97ac6950d378fdc6a88931.html b/c-api/group__objects__safe__cxr_ga8dc32c35ee97ac6950d378fdc6a88931.html
index 4d5663c5..192a7f9c 100644
--- a/c-api/group__objects__safe__cxr_ga8dc32c35ee97ac6950d378fdc6a88931.html
+++ b/c-api/group__objects__safe__cxr_ga8dc32c35ee97ac6950d378fdc6a88931.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_caadr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_ga90c56d41d9581764708d7940513841dc.html b/c-api/group__objects__safe__cxr_ga90c56d41d9581764708d7940513841dc.html
index 2d30de58..ee092dfa 100644
--- a/c-api/group__objects__safe__cxr_ga90c56d41d9581764708d7940513841dc.html
+++ b/c-api/group__objects__safe__cxr_ga90c56d41d9581764708d7940513841dc.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_cddddr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_ga9d9bd165e961d1e74fd8a4df98846019.html b/c-api/group__objects__safe__cxr_ga9d9bd165e961d1e74fd8a4df98846019.html
index 375fdc16..60cd5b7e 100644
--- a/c-api/group__objects__safe__cxr_ga9d9bd165e961d1e74fd8a4df98846019.html
+++ b/c-api/group__objects__safe__cxr_ga9d9bd165e961d1e74fd8a4df98846019.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_caddr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_gaa1a0a783c10f988f1866395900a5d888.html b/c-api/group__objects__safe__cxr_gaa1a0a783c10f988f1866395900a5d888.html
index 2cec94ea..446c02f9 100644
--- a/c-api/group__objects__safe__cxr_gaa1a0a783c10f988f1866395900a5d888.html
+++ b/c-api/group__objects__safe__cxr_gaa1a0a783c10f988f1866395900a5d888.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_cdadar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_gaae567205d69d76d63b4cf70ba3c7d35f.html b/c-api/group__objects__safe__cxr_gaae567205d69d76d63b4cf70ba3c7d35f.html
index 8aa9ffb6..580c53b9 100644
--- a/c-api/group__objects__safe__cxr_gaae567205d69d76d63b4cf70ba3c7d35f.html
+++ b/c-api/group__objects__safe__cxr_gaae567205d69d76d63b4cf70ba3c7d35f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_cdaadr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_gab9bd70e42252ef9b88635d350db8ff81.html b/c-api/group__objects__safe__cxr_gab9bd70e42252ef9b88635d350db8ff81.html
index 98492f46..bf237bac 100644
--- a/c-api/group__objects__safe__cxr_gab9bd70e42252ef9b88635d350db8ff81.html
+++ b/c-api/group__objects__safe__cxr_gab9bd70e42252ef9b88635d350db8ff81.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_caar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_gaba5da865411f761192a59ef7f0a39888.html b/c-api/group__objects__safe__cxr_gaba5da865411f761192a59ef7f0a39888.html
index a6e71aab..805d875f 100644
--- a/c-api/group__objects__safe__cxr_gaba5da865411f761192a59ef7f0a39888.html
+++ b/c-api/group__objects__safe__cxr_gaba5da865411f761192a59ef7f0a39888.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_cdaaar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_gabab7bc14426e08d0fb35ad7404233903.html b/c-api/group__objects__safe__cxr_gabab7bc14426e08d0fb35ad7404233903.html
index 588a76bf..db15b04c 100644
--- a/c-api/group__objects__safe__cxr_gabab7bc14426e08d0fb35ad7404233903.html
+++ b/c-api/group__objects__safe__cxr_gabab7bc14426e08d0fb35ad7404233903.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_cddaar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_gad5328a54ed7c04d53503cf7bf6fa57c5.html b/c-api/group__objects__safe__cxr_gad5328a54ed7c04d53503cf7bf6fa57c5.html
index f9af55d1..8572f168 100644
--- a/c-api/group__objects__safe__cxr_gad5328a54ed7c04d53503cf7bf6fa57c5.html
+++ b/c-api/group__objects__safe__cxr_gad5328a54ed7c04d53503cf7bf6fa57c5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_cdaar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_gadfb55a0486e6280afe4fbbe3e987aa7f.html b/c-api/group__objects__safe__cxr_gadfb55a0486e6280afe4fbbe3e987aa7f.html
index f83bbf6b..d6fe048f 100644
--- a/c-api/group__objects__safe__cxr_gadfb55a0486e6280afe4fbbe3e987aa7f.html
+++ b/c-api/group__objects__safe__cxr_gadfb55a0486e6280afe4fbbe3e987aa7f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_cdadr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_gae5fca504e9e12919359db335a69411b2.html b/c-api/group__objects__safe__cxr_gae5fca504e9e12919359db335a69411b2.html
index 1d7867f9..26c57ad6 100644
--- a/c-api/group__objects__safe__cxr_gae5fca504e9e12919359db335a69411b2.html
+++ b/c-api/group__objects__safe__cxr_gae5fca504e9e12919359db335a69411b2.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_cdar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_gaeef20bed3c841718ca1b08fc088bfba7.html b/c-api/group__objects__safe__cxr_gaeef20bed3c841718ca1b08fc088bfba7.html
index 6650eacc..f9bf6627 100644
--- a/c-api/group__objects__safe__cxr_gaeef20bed3c841718ca1b08fc088bfba7.html
+++ b/c-api/group__objects__safe__cxr_gaeef20bed3c841718ca1b08fc088bfba7.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_cadddr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_gaf00e226bb49b9c951c6ef3ae5cb5e89b.html b/c-api/group__objects__safe__cxr_gaf00e226bb49b9c951c6ef3ae5cb5e89b.html
index 3334a707..e9daffd6 100644
--- a/c-api/group__objects__safe__cxr_gaf00e226bb49b9c951c6ef3ae5cb5e89b.html
+++ b/c-api/group__objects__safe__cxr_gaf00e226bb49b9c951c6ef3ae5cb5e89b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_cdddar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__safe__cxr_gaffe9b8cdd457519ad45b144eb5c7c476.html b/c-api/group__objects__safe__cxr_gaffe9b8cdd457519ad45b144eb5c7c476.html
index 2ebc90e7..2bf5f786 100644
--- a/c-api/group__objects__safe__cxr_gaffe9b8cdd457519ad45b144eb5c7c476.html
+++ b/c-api/group__objects__safe__cxr_gaffe9b8cdd457519ad45b144eb5c7c476.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_cadaar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr.html b/c-api/group__objects__unsafe__cxr.html
index 14cbc741..37e8e11b 100644
--- a/c-api/group__objects__unsafe__cxr.html
+++ b/c-api/group__objects__unsafe__cxr.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Unsafe pair access macros
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -140,7 +143,7 @@ Macros
diff --git a/c-api/group__objects__unsafe__cxr_ga2009ba9fd7b503b8f4ce4d1c9aaf1ac9.html b/c-api/group__objects__unsafe__cxr_ga2009ba9fd7b503b8f4ce4d1c9aaf1ac9.html
index 18ebb1ab..0ec3dcf5 100644
--- a/c-api/group__objects__unsafe__cxr_ga2009ba9fd7b503b8f4ce4d1c9aaf1ac9.html
+++ b/c-api/group__objects__unsafe__cxr_ga2009ba9fd7b503b8f4ce4d1c9aaf1ac9.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cadddr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_ga2334d9513ff1fbe0ec9811ed58a6bac7.html b/c-api/group__objects__unsafe__cxr_ga2334d9513ff1fbe0ec9811ed58a6bac7.html
index 7f89b435..2681e838 100644
--- a/c-api/group__objects__unsafe__cxr_ga2334d9513ff1fbe0ec9811ed58a6bac7.html
+++ b/c-api/group__objects__unsafe__cxr_ga2334d9513ff1fbe0ec9811ed58a6bac7.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: caaddr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_ga2def7ff9f1d02af44fadb91d3b2db3b5.html b/c-api/group__objects__unsafe__cxr_ga2def7ff9f1d02af44fadb91d3b2db3b5.html
index ecd05d61..4e80cb55 100644
--- a/c-api/group__objects__unsafe__cxr_ga2def7ff9f1d02af44fadb91d3b2db3b5.html
+++ b/c-api/group__objects__unsafe__cxr_ga2def7ff9f1d02af44fadb91d3b2db3b5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: caadar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_ga357d668f408f098f729dec07b861346f.html b/c-api/group__objects__unsafe__cxr_ga357d668f408f098f729dec07b861346f.html
index 937346e8..bb4d18ae 100644
--- a/c-api/group__objects__unsafe__cxr_ga357d668f408f098f729dec07b861346f.html
+++ b/c-api/group__objects__unsafe__cxr_ga357d668f408f098f729dec07b861346f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cadar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_ga3754af468ae17143f4cbc4d0daee2a1f.html b/c-api/group__objects__unsafe__cxr_ga3754af468ae17143f4cbc4d0daee2a1f.html
index 418613dc..a330c757 100644
--- a/c-api/group__objects__unsafe__cxr_ga3754af468ae17143f4cbc4d0daee2a1f.html
+++ b/c-api/group__objects__unsafe__cxr_ga3754af468ae17143f4cbc4d0daee2a1f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cddar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_ga3902a8f63dd4e1e654ab118bbae7da00.html b/c-api/group__objects__unsafe__cxr_ga3902a8f63dd4e1e654ab118bbae7da00.html
index 162e9214..58fd8771 100644
--- a/c-api/group__objects__unsafe__cxr_ga3902a8f63dd4e1e654ab118bbae7da00.html
+++ b/c-api/group__objects__unsafe__cxr_ga3902a8f63dd4e1e654ab118bbae7da00.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cdaaar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_ga3e480d4ce4844ee85356510a3dc95922.html b/c-api/group__objects__unsafe__cxr_ga3e480d4ce4844ee85356510a3dc95922.html
index 4559130b..f642a167 100644
--- a/c-api/group__objects__unsafe__cxr_ga3e480d4ce4844ee85356510a3dc95922.html
+++ b/c-api/group__objects__unsafe__cxr_ga3e480d4ce4844ee85356510a3dc95922.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cddaar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_ga3f9ee3825d7331261a07e652d7ee37b3.html b/c-api/group__objects__unsafe__cxr_ga3f9ee3825d7331261a07e652d7ee37b3.html
index 03c872bd..3a736b36 100644
--- a/c-api/group__objects__unsafe__cxr_ga3f9ee3825d7331261a07e652d7ee37b3.html
+++ b/c-api/group__objects__unsafe__cxr_ga3f9ee3825d7331261a07e652d7ee37b3.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: caddar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_ga45ea3a755ce327be8d6460883b87efff.html b/c-api/group__objects__unsafe__cxr_ga45ea3a755ce327be8d6460883b87efff.html
index cf73c09b..eb5ae46f 100644
--- a/c-api/group__objects__unsafe__cxr_ga45ea3a755ce327be8d6460883b87efff.html
+++ b/c-api/group__objects__unsafe__cxr_ga45ea3a755ce327be8d6460883b87efff.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cddr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_ga64d62f39c7eafcfae40849dfd762f3b7.html b/c-api/group__objects__unsafe__cxr_ga64d62f39c7eafcfae40849dfd762f3b7.html
index 98251127..0c4bde35 100644
--- a/c-api/group__objects__unsafe__cxr_ga64d62f39c7eafcfae40849dfd762f3b7.html
+++ b/c-api/group__objects__unsafe__cxr_ga64d62f39c7eafcfae40849dfd762f3b7.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: caaadr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_ga7014b2a76d1776e177cc59dc0bbbda2b.html b/c-api/group__objects__unsafe__cxr_ga7014b2a76d1776e177cc59dc0bbbda2b.html
index 4d3218fa..34578233 100644
--- a/c-api/group__objects__unsafe__cxr_ga7014b2a76d1776e177cc59dc0bbbda2b.html
+++ b/c-api/group__objects__unsafe__cxr_ga7014b2a76d1776e177cc59dc0bbbda2b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cadadr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_ga761b5c34da6bfe42a68357e01357d664.html b/c-api/group__objects__unsafe__cxr_ga761b5c34da6bfe42a68357e01357d664.html
index 7c9604df..2f2049de 100644
--- a/c-api/group__objects__unsafe__cxr_ga761b5c34da6bfe42a68357e01357d664.html
+++ b/c-api/group__objects__unsafe__cxr_ga761b5c34da6bfe42a68357e01357d664.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cdddr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_ga8067c38c135a8eeba2b4cda023f2f359.html b/c-api/group__objects__unsafe__cxr_ga8067c38c135a8eeba2b4cda023f2f359.html
index 50c84617..f2979dc8 100644
--- a/c-api/group__objects__unsafe__cxr_ga8067c38c135a8eeba2b4cda023f2f359.html
+++ b/c-api/group__objects__unsafe__cxr_ga8067c38c135a8eeba2b4cda023f2f359.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: caaar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_ga86aea8550b1774cc00273366dbdfc402.html b/c-api/group__objects__unsafe__cxr_ga86aea8550b1774cc00273366dbdfc402.html
index 1f8f8033..9e85ab84 100644
--- a/c-api/group__objects__unsafe__cxr_ga86aea8550b1774cc00273366dbdfc402.html
+++ b/c-api/group__objects__unsafe__cxr_ga86aea8550b1774cc00273366dbdfc402.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cadaar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_ga96627e132c289a5c4b3d678b4a6cc9f8.html b/c-api/group__objects__unsafe__cxr_ga96627e132c289a5c4b3d678b4a6cc9f8.html
index a4f1fb68..bf60ef49 100644
--- a/c-api/group__objects__unsafe__cxr_ga96627e132c289a5c4b3d678b4a6cc9f8.html
+++ b/c-api/group__objects__unsafe__cxr_ga96627e132c289a5c4b3d678b4a6cc9f8.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cdr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_ga9a690458d290f545e054eb631a5b6ca3.html b/c-api/group__objects__unsafe__cxr_ga9a690458d290f545e054eb631a5b6ca3.html
index c9569b40..28297eca 100644
--- a/c-api/group__objects__unsafe__cxr_ga9a690458d290f545e054eb631a5b6ca3.html
+++ b/c-api/group__objects__unsafe__cxr_ga9a690458d290f545e054eb631a5b6ca3.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cdadar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_gab10df505ac6dd90ce27f2aca1832ef8b.html b/c-api/group__objects__unsafe__cxr_gab10df505ac6dd90ce27f2aca1832ef8b.html
index de9a37d3..5d66d51f 100644
--- a/c-api/group__objects__unsafe__cxr_gab10df505ac6dd90ce27f2aca1832ef8b.html
+++ b/c-api/group__objects__unsafe__cxr_gab10df505ac6dd90ce27f2aca1832ef8b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cdaddr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_gab16f91ff796ec917553f3f37f2f9c981.html b/c-api/group__objects__unsafe__cxr_gab16f91ff796ec917553f3f37f2f9c981.html
index b79e7ee1..03cc1a91 100644
--- a/c-api/group__objects__unsafe__cxr_gab16f91ff796ec917553f3f37f2f9c981.html
+++ b/c-api/group__objects__unsafe__cxr_gab16f91ff796ec917553f3f37f2f9c981.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: caaaar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_gad8ce3aed1712e672a6ece441f8fac825.html b/c-api/group__objects__unsafe__cxr_gad8ce3aed1712e672a6ece441f8fac825.html
index 1a5cb560..3fe81ff2 100644
--- a/c-api/group__objects__unsafe__cxr_gad8ce3aed1712e672a6ece441f8fac825.html
+++ b/c-api/group__objects__unsafe__cxr_gad8ce3aed1712e672a6ece441f8fac825.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cdddar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_gad9682b4969e00caa889989b66d66a4f7.html b/c-api/group__objects__unsafe__cxr_gad9682b4969e00caa889989b66d66a4f7.html
index 1ffce5d5..2b924784 100644
--- a/c-api/group__objects__unsafe__cxr_gad9682b4969e00caa889989b66d66a4f7.html
+++ b/c-api/group__objects__unsafe__cxr_gad9682b4969e00caa889989b66d66a4f7.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cdadr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_gadce57388834c7ab422b5c2f94e28e4a1.html b/c-api/group__objects__unsafe__cxr_gadce57388834c7ab422b5c2f94e28e4a1.html
index fcab478b..b2619ccd 100644
--- a/c-api/group__objects__unsafe__cxr_gadce57388834c7ab422b5c2f94e28e4a1.html
+++ b/c-api/group__objects__unsafe__cxr_gadce57388834c7ab422b5c2f94e28e4a1.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cdaar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_gae48e29f6a6851523d04caa76666f8533.html b/c-api/group__objects__unsafe__cxr_gae48e29f6a6851523d04caa76666f8533.html
index e5c3ae24..5a80d94c 100644
--- a/c-api/group__objects__unsafe__cxr_gae48e29f6a6851523d04caa76666f8533.html
+++ b/c-api/group__objects__unsafe__cxr_gae48e29f6a6851523d04caa76666f8533.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: caddr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_gae4dfcb6df647ab2faa722e2ea931fef5.html b/c-api/group__objects__unsafe__cxr_gae4dfcb6df647ab2faa722e2ea931fef5.html
index 84ca0277..2acc0267 100644
--- a/c-api/group__objects__unsafe__cxr_gae4dfcb6df647ab2faa722e2ea931fef5.html
+++ b/c-api/group__objects__unsafe__cxr_gae4dfcb6df647ab2faa722e2ea931fef5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: car
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_gae743562764905b0dc67952d8c8c633ac.html b/c-api/group__objects__unsafe__cxr_gae743562764905b0dc67952d8c8c633ac.html
index 70883ca4..5ef91978 100644
--- a/c-api/group__objects__unsafe__cxr_gae743562764905b0dc67952d8c8c633ac.html
+++ b/c-api/group__objects__unsafe__cxr_gae743562764905b0dc67952d8c8c633ac.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cadr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_gae98679032351b5ad10d291b1ad645269.html b/c-api/group__objects__unsafe__cxr_gae98679032351b5ad10d291b1ad645269.html
index 87fdee3c..acc68632 100644
--- a/c-api/group__objects__unsafe__cxr_gae98679032351b5ad10d291b1ad645269.html
+++ b/c-api/group__objects__unsafe__cxr_gae98679032351b5ad10d291b1ad645269.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: caar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_gaebc35ea34fe36d76cfa8252ec504d879.html b/c-api/group__objects__unsafe__cxr_gaebc35ea34fe36d76cfa8252ec504d879.html
index 13e77877..ee0d2556 100644
--- a/c-api/group__objects__unsafe__cxr_gaebc35ea34fe36d76cfa8252ec504d879.html
+++ b/c-api/group__objects__unsafe__cxr_gaebc35ea34fe36d76cfa8252ec504d879.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cdar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_gaefb44cb2529d3c529aecc2c93361e674.html b/c-api/group__objects__unsafe__cxr_gaefb44cb2529d3c529aecc2c93361e674.html
index ba165afb..854e899f 100644
--- a/c-api/group__objects__unsafe__cxr_gaefb44cb2529d3c529aecc2c93361e674.html
+++ b/c-api/group__objects__unsafe__cxr_gaefb44cb2529d3c529aecc2c93361e674.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: caadr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_gaf6ad40de5595c19e530b8529c2912e06.html b/c-api/group__objects__unsafe__cxr_gaf6ad40de5595c19e530b8529c2912e06.html
index 2590486f..02a33b1a 100644
--- a/c-api/group__objects__unsafe__cxr_gaf6ad40de5595c19e530b8529c2912e06.html
+++ b/c-api/group__objects__unsafe__cxr_gaf6ad40de5595c19e530b8529c2912e06.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cddadr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_gaf709d433d39315f5f3fe2023e9e03fa1.html b/c-api/group__objects__unsafe__cxr_gaf709d433d39315f5f3fe2023e9e03fa1.html
index d911530a..57fb31d9 100644
--- a/c-api/group__objects__unsafe__cxr_gaf709d433d39315f5f3fe2023e9e03fa1.html
+++ b/c-api/group__objects__unsafe__cxr_gaf709d433d39315f5f3fe2023e9e03fa1.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cdaadr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects__unsafe__cxr_gafd910d17943625232c5b2c596915c4d5.html b/c-api/group__objects__unsafe__cxr_gafd910d17943625232c5b2c596915c4d5.html
index 1469974c..75e251fa 100644
--- a/c-api/group__objects__unsafe__cxr_gafd910d17943625232c5b2c596915c4d5.html
+++ b/c-api/group__objects__unsafe__cxr_gafd910d17943625232c5b2c596915c4d5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cddddr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__objects_ga019a78d608ba331b619fbe5325cddfd5.html b/c-api/group__objects_ga019a78d608ba331b619fbe5325cddfd5.html
index c46f6d9e..e7738690 100644
--- a/c-api/group__objects_ga019a78d608ba331b619fbe5325cddfd5.html
+++ b/c-api/group__objects_ga019a78d608ba331b619fbe5325cddfd5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: type_of
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -185,7 +189,7 @@ $(function() {
diff --git a/c-api/group__objects_ga06015fb64aa99ae2342206daa0976457.html b/c-api/group__objects_ga06015fb64aa99ae2342206daa0976457.html
index cc4f55dd..3ab1142e 100644
--- a/c-api/group__objects_ga06015fb64aa99ae2342206daa0976457.html
+++ b/c-api/group__objects_ga06015fb64aa99ae2342206daa0976457.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: CYC_BINARY_PORT_FLAG
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -180,7 +184,7 @@ $(function() {
diff --git a/c-api/group__objects_ga0df9da17d3d44234e2764fbec2492fdb.html b/c-api/group__objects_ga0df9da17d3d44234e2764fbec2492fdb.html
index 0d07503c..d7444c73 100644
--- a/c-api/group__objects_ga0df9da17d3d44234e2764fbec2492fdb.html
+++ b/c-api/group__objects_ga0df9da17d3d44234e2764fbec2492fdb.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: quote_void
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -181,7 +185,7 @@ $(function() {
diff --git a/c-api/group__objects_ga16d3307e79ddce02d6bb7f7e6df77d7c.html b/c-api/group__objects_ga16d3307e79ddce02d6bb7f7e6df77d7c.html
index 6022388d..9158bbab 100644
--- a/c-api/group__objects_ga16d3307e79ddce02d6bb7f7e6df77d7c.html
+++ b/c-api/group__objects_ga16d3307e79ddce02d6bb7f7e6df77d7c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: string_str
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -185,7 +189,7 @@ $(function() {
diff --git a/c-api/group__objects_ga192b243c1589dee01be50aca4a80ae5f.html b/c-api/group__objects_ga192b243c1589dee01be50aca4a80ae5f.html
index 1b16a6fa..12ab96d2 100644
--- a/c-api/group__objects_ga192b243c1589dee01be50aca4a80ae5f.html
+++ b/c-api/group__objects_ga192b243c1589dee01be50aca4a80ae5f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: alloca_double
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: n->hdr.grayed = 0; \
n->value = v;
#define gc_color_red
Definition: types.h:296
-
Double-precision floating point type, also known as a flonum.
Definition: types.h:876
-
-
+
Value:
+
+
n->hdr.grayed = 0; \
+
+
n->value = v;
+
Create a new double in the nursery using alloca
+
+#define gc_color_red
Definition: types.h:297
+@ double_tag
Definition: types.h:58
+Double-precision floating point type, also known as a flonum.
Definition: types.h:877
diff --git a/c-api/group__objects_ga1ea731d062320fa93be8260332584b2c.html b/c-api/group__objects_ga1ea731d062320fa93be8260332584b2c.html
index f78ccead..7f6a9418 100644
--- a/c-api/group__objects_ga1ea731d062320fa93be8260332584b2c.html
+++ b/c-api/group__objects_ga1ea731d062320fa93be8260332584b2c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: boolean_desc
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -184,7 +188,7 @@ $(function() {
diff --git a/c-api/group__objects_ga1edab468f8633d34ec0899c184f32534.html b/c-api/group__objects_ga1edab468f8633d34ec0899c184f32534.html
index 465694be..cf7be196 100644
--- a/c-api/group__objects_ga1edab468f8633d34ec0899c184f32534.html
+++ b/c-api/group__objects_ga1edab468f8633d34ec0899c184f32534.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: c_opaque
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -180,7 +184,7 @@ $(function() {
diff --git a/c-api/group__objects_ga1f30d76b2007b32b3c970e00049e89e9.html b/c-api/group__objects_ga1f30d76b2007b32b3c970e00049e89e9.html
index ef9a7f75..0718907f 100644
--- a/c-api/group__objects_ga1f30d76b2007b32b3c970e00049e89e9.html
+++ b/c-api/group__objects_ga1f30d76b2007b32b3c970e00049e89e9.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: vector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -180,7 +184,7 @@ $(function() {
diff --git a/c-api/group__objects_ga236a3840b292378002450b28649204b4.html b/c-api/group__objects_ga236a3840b292378002450b28649204b4.html
index ccce83a3..f31b66ec 100644
--- a/c-api/group__objects_ga236a3840b292378002450b28649204b4.html
+++ b/c-api/group__objects_ga236a3840b292378002450b28649204b4.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: make_empty_vector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: v.hdr.grayed = 0; \
v.hdr.immutable = 0; \
v.num_elements = 0; \
v.elements = NULL;
-
Vector type.
Definition: types.h:1164
-
#define gc_color_red
Definition: types.h:296
-
-
gc_header_type hdr
Definition: types.h:1165
+
Value:
+
+
v.hdr.grayed = 0; \
+
v.hdr.immutable = 0; \
+
+
v.num_elements = 0; \
+
v.elements = NULL;
Create a new vector in the nursery
@@ -186,11 +192,16 @@ $(function() {
+@ vector_tag
Definition: types.h:69
+#define gc_color_red
Definition: types.h:297
+Vector type.
Definition: types.h:1170
+
+gc_header_type hdr
Definition: types.h:1171
diff --git a/c-api/group__objects_ga26fc97a19953613cdf6499a925b5ac3b.html b/c-api/group__objects_ga26fc97a19953613cdf6499a925b5ac3b.html
index f757d410..ff616e8c 100644
--- a/c-api/group__objects_ga26fc97a19953613cdf6499a925b5ac3b.html
+++ b/c-api/group__objects_ga26fc97a19953613cdf6499a925b5ac3b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: mclosure0
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
+
Create a closure0 object These objects are special and can be statically allocated as an optimization
@@ -194,7 +199,7 @@ $(function() {
diff --git a/c-api/group__objects_ga2733c2727ea55735aa0c032013f28568.html b/c-api/group__objects_ga2733c2727ea55735aa0c032013f28568.html
index 56366ecb..b93ddfcb 100644
--- a/c-api/group__objects_ga2733c2727ea55735aa0c032013f28568.html
+++ b/c-api/group__objects_ga2733c2727ea55735aa0c032013f28568.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: integer_value
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -185,7 +189,7 @@ $(function() {
diff --git a/c-api/group__objects_ga2de9a23f157b62533c72bb17267c2f14.html b/c-api/group__objects_ga2de9a23f157b62533c72bb17267c2f14.html
index 6f7cb2e5..856db5f2 100644
--- a/c-api/group__objects_ga2de9a23f157b62533c72bb17267c2f14.html
+++ b/c-api/group__objects_ga2de9a23f157b62533c72bb17267c2f14.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: closure
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -180,7 +184,7 @@ $(function() {
diff --git a/c-api/group__objects_ga318a60513459609df04f55e9d831789f.html b/c-api/group__objects_ga318a60513459609df04f55e9d831789f.html
index 2bf1a60f..49247a78 100644
--- a/c-api/group__objects_ga318a60513459609df04f55e9d831789f.html
+++ b/c-api/group__objects_ga318a60513459609df04f55e9d831789f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: opaque_collect_ptr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -185,7 +189,7 @@ $(function() {
diff --git a/c-api/group__objects_ga33d3b86e1a928fd4d83579e0a19bd312.html b/c-api/group__objects_ga33d3b86e1a928fd4d83579e0a19bd312.html
index 9441ec8c..9c0080c9 100644
--- a/c-api/group__objects_ga33d3b86e1a928fd4d83579e0a19bd312.html
+++ b/c-api/group__objects_ga33d3b86e1a928fd4d83579e0a19bd312.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: alloca_cell
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -194,7 +198,7 @@ $(function() {
diff --git a/c-api/group__objects_ga3be4dc1266585983419449b4d3d2fb91.html b/c-api/group__objects_ga3be4dc1266585983419449b4d3d2fb91.html
index 93206229..0f502efe 100644
--- a/c-api/group__objects_ga3be4dc1266585983419449b4d3d2fb91.html
+++ b/c-api/group__objects_ga3be4dc1266585983419449b4d3d2fb91.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: bn_cmp_type
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -188,7 +192,7 @@ $(function() {
diff --git a/c-api/group__objects_ga3c0715e591139c9f837c26de21f7a8ba.html b/c-api/group__objects_ga3c0715e591139c9f837c26de21f7a8ba.html
index c45da9b1..6f6b9b26 100644
--- a/c-api/group__objects_ga3c0715e591139c9f837c26de21f7a8ba.html
+++ b/c-api/group__objects_ga3c0715e591139c9f837c26de21f7a8ba.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: make_complex_num
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: n.hdr.grayed = 0; \
n.value = (r + (i * I));
-
#define gc_color_red
Definition: types.h:296
-
gc_header_type hdr
Definition: types.h:846
-
-
Complex number.
Definition: types.h:845
+
Value:
+
+
n.hdr.grayed = 0; \
+
+
n.value = (r + (i * I));
Create a new complex number in the nursery
@@ -202,11 +206,16 @@ $(function() {
+Complex number.
Definition: types.h:846
+#define gc_color_red
Definition: types.h:297
+
+gc_header_type hdr
Definition: types.h:847
+@ complex_num_tag
Definition: types.h:70
diff --git a/c-api/group__objects_ga3d01d466cdb8ea50f15057d95c4e02b7.html b/c-api/group__objects_ga3d01d466cdb8ea50f15057d95c4e02b7.html
index 42f16fb5..b1243b37 100644
--- a/c-api/group__objects_ga3d01d466cdb8ea50f15057d95c4e02b7.html
+++ b/c-api/group__objects_ga3d01d466cdb8ea50f15057d95c4e02b7.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: prim_name
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
+
Return description of primitive object x
@@ -184,7 +189,7 @@ $(function() {
diff --git a/c-api/group__objects_ga3eff9ebd9f241e211e00b991e2ac60fc.html b/c-api/group__objects_ga3eff9ebd9f241e211e00b991e2ac60fc.html
index de9f2818..ecfb196b 100644
--- a/c-api/group__objects_ga3eff9ebd9f241e211e00b991e2ac60fc.html
+++ b/c-api/group__objects_ga3eff9ebd9f241e211e00b991e2ac60fc.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: object_tag
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -208,7 +213,7 @@ $(function() {
diff --git a/c-api/group__objects_ga3f11ecf53bddcfdb580a188fbe71fab6.html b/c-api/group__objects_ga3f11ecf53bddcfdb580a188fbe71fab6.html
index 24e19135..4d94ddab 100644
--- a/c-api/group__objects_ga3f11ecf53bddcfdb580a188fbe71fab6.html
+++ b/c-api/group__objects_ga3f11ecf53bddcfdb580a188fbe71fab6.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: make_utf8_string_noalloc
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: cs.num_cp = length; \
cs.str = s; }
int len
Definition: types.h:935
-
#define gc_color_red
Definition: types.h:296
-
-
-
-
The string type.
Definition: types.h:931
-
-
gc_header_type hdr
Definition: types.h:932
+
Value:
+
+
+
cs.num_cp = length; \
+
cs.str = s; }
Create a string object using the given C string and length. No allocation is done for the given C string.
@@ -205,11 +206,19 @@ $(function() {
+#define gc_color_red
Definition: types.h:297
+
+
+int len
Definition: types.h:937
+
+gc_header_type hdr
Definition: types.h:934
+The string type.
Definition: types.h:933
+@ string_tag
Definition: types.h:67
diff --git a/c-api/group__objects_ga3f7b6ea48cf5e71d3708ebaf8cfee378.html b/c-api/group__objects_ga3f7b6ea48cf5e71d3708ebaf8cfee378.html
index 855b8916..65ab1a9b 100644
--- a/c-api/group__objects_ga3f7b6ea48cf5e71d3708ebaf8cfee378.html
+++ b/c-api/group__objects_ga3f7b6ea48cf5e71d3708ebaf8cfee378.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: closure1
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -180,7 +184,7 @@ $(function() {
diff --git a/c-api/group__objects_ga41468991ba59fb3b4bece36d3cee469d.html b/c-api/group__objects_ga41468991ba59fb3b4bece36d3cee469d.html
index 67fb56d2..579cf298 100644
--- a/c-api/group__objects_ga41468991ba59fb3b4bece36d3cee469d.html
+++ b/c-api/group__objects_ga41468991ba59fb3b4bece36d3cee469d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: alloca_complex_num
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: n->hdr.grayed = 0; \
n->value = (r + (i * I));
-
#define gc_color_red
Definition: types.h:296
-
Complex number.
Definition: types.h:845
+
Value:
+
+
n->hdr.grayed = 0; \
+
+
n->value = (r + (i * I));
@@ -199,11 +205,14 @@ $(function() {
+Complex number.
Definition: types.h:846
+#define gc_color_red
Definition: types.h:297
+@ complex_num_tag
Definition: types.h:70
diff --git a/c-api/group__objects_ga42edd7fbf49b429b67f1bd2f094b87b0.html b/c-api/group__objects_ga42edd7fbf49b429b67f1bd2f094b87b0.html
index 93a8a331..91db4d74 100644
--- a/c-api/group__objects_ga42edd7fbf49b429b67f1bd2f094b87b0.html
+++ b/c-api/group__objects_ga42edd7fbf49b429b67f1bd2f094b87b0.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cond_var
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -180,7 +184,7 @@ $(function() {
diff --git a/c-api/group__objects_ga43211eb75a3595ad2ad332d356be59dc.html b/c-api/group__objects_ga43211eb75a3595ad2ad332d356be59dc.html
new file mode 100644
index 00000000..0256df97
--- /dev/null
+++ b/c-api/group__objects_ga43211eb75a3595ad2ad332d356be59dc.html
@@ -0,0 +1,191 @@
+
+
+
+
+
+
+
+
Cyclone Scheme: Cyc_RECORD_MARKER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ Cyc_RECORD_MARKER
+
+
+
+
+
+ const object Cyc_RECORD_MARKER
+
+
+
+
The record marker value.
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/group__objects_ga46231cbc8e3cbc00623f1181fdc56eee.html b/c-api/group__objects_ga46231cbc8e3cbc00623f1181fdc56eee.html
index b5bcdf8d..8094c01d 100644
--- a/c-api/group__objects_ga46231cbc8e3cbc00623f1181fdc56eee.html
+++ b/c-api/group__objects_ga46231cbc8e3cbc00623f1181fdc56eee.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: macro
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -180,7 +184,7 @@ $(function() {
diff --git a/c-api/group__objects_ga479118021e195172dd010152d4229d34.html b/c-api/group__objects_ga479118021e195172dd010152d4229d34.html
index 99df7399..5e6651bf 100644
--- a/c-api/group__objects_ga479118021e195172dd010152d4229d34.html
+++ b/c-api/group__objects_ga479118021e195172dd010152d4229d34.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: alloca_empty_vector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: v->hdr.grayed = 0; \
v->hdr.immutable = 0; \
v->num_elements = 0; \
v->elements = NULL;
-
Vector type.
Definition: types.h:1164
-
#define gc_color_red
Definition: types.h:296
-
+
Value:
+
+
v->hdr.grayed = 0; \
+
v->hdr.immutable = 0; \
+
+
v->num_elements = 0; \
+
v->elements = NULL;
+
Create an empty vector in the nursery using alloca
+
+@ vector_tag
Definition: types.h:69
+#define gc_color_red
Definition: types.h:297
+Vector type.
Definition: types.h:1170
diff --git a/c-api/group__objects_ga4ea8c14343c359cfeb19142096538524.html b/c-api/group__objects_ga4ea8c14343c359cfeb19142096538524.html
index 29e17d24..31eddadd 100644
--- a/c-api/group__objects_ga4ea8c14343c359cfeb19142096538524.html
+++ b/c-api/group__objects_ga4ea8c14343c359cfeb19142096538524.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_EOF
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -181,7 +185,7 @@ $(function() {
diff --git a/c-api/group__objects_ga57af9a14a2985287c491871a589d8c97.html b/c-api/group__objects_ga57af9a14a2985287c491871a589d8c97.html
index 2f7eab5a..c16ed664 100644
--- a/c-api/group__objects_ga57af9a14a2985287c491871a589d8c97.html
+++ b/c-api/group__objects_ga57af9a14a2985287c491871a589d8c97.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: alloca_pair
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: n->hdr.grayed = 0; \
n->hdr.immutable = 0; \
n->pair_car = a; \
n->pair_cdr = d;
The pair (cons) type.
Definition: types.h:1239
-
#define gc_color_red
Definition: types.h:296
-
-
+
Value:
+
+
n->hdr.grayed = 0; \
+
n->hdr.immutable = 0; \
+
+
n->pair_car = a; \
+
n->pair_cdr = d;
+
Create a new pair in the nursery using alloca
+
+#define gc_color_red
Definition: types.h:297
+The pair (cons) type.
Definition: types.h:1247
+@ pair_tag
Definition: types.h:64
diff --git a/c-api/group__objects_ga59967b94dbb2722fabdf10bd260f0d67.html b/c-api/group__objects_ga59967b94dbb2722fabdf10bd260f0d67.html
index 8cc29476..8eb4ffd3 100644
--- a/c-api/group__objects_ga59967b94dbb2722fabdf10bd260f0d67.html
+++ b/c-api/group__objects_ga59967b94dbb2722fabdf10bd260f0d67.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -180,7 +184,7 @@ $(function() {
diff --git a/c-api/group__objects_ga59b6090e5ba5a762dc221e347ea9b5af.html b/c-api/group__objects_ga59b6090e5ba5a762dc221e347ea9b5af.html
index 3459a53f..3d4de072 100644
--- a/c-api/group__objects_ga59b6090e5ba5a762dc221e347ea9b5af.html
+++ b/c-api/group__objects_ga59b6090e5ba5a762dc221e347ea9b5af.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: assign_complex_num
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: complex_num_value(pobj) = v;
-
#define gc_color_red
Definition: types.h:296
-
Complex number.
Definition: types.h:845
+
Value:
+
+
+
complex_num_value(pobj) = v;
Assign given complex value to the given complex number object pointer
@@ -194,11 +199,14 @@ $(function() {
+Complex number.
Definition: types.h:846
+#define gc_color_red
Definition: types.h:297
+@ complex_num_tag
Definition: types.h:70
diff --git a/c-api/group__objects_ga5c491b6ee0e16480c390f3516964569e.html b/c-api/group__objects_ga5c491b6ee0e16480c390f3516964569e.html
index da9ca1a9..e80c367f 100644
--- a/c-api/group__objects_ga5c491b6ee0e16480c390f3516964569e.html
+++ b/c-api/group__objects_ga5c491b6ee0e16480c390f3516964569e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: make_cvar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: n.hdr.grayed = 0; \
n.hdr.immutable = 0; \
n.pvar = v;
#define gc_color_red
Definition: types.h:296
-
C-variable integration type - wrapper around a Cyclone object pointer.
Definition: types.h:676
-
-
gc_header_type hdr
Definition: types.h:677
-
+
Value:
+
+
n.hdr.grayed = 0; \
+
n.hdr.immutable = 0; \
+
+
n.pvar = v;
Create a new cvar in the nursery
@@ -196,11 +201,16 @@ $(function() {
+#define gc_color_red
Definition: types.h:297
+gc_header_type hdr
Definition: types.h:678
+C-variable integration type - wrapper around a Cyclone object pointer.
Definition: types.h:677
+
+@ cvar_tag
Definition: types.h:57
diff --git a/c-api/group__objects_ga5eda265b5d32cfcc6309eaf41423fd8d.html b/c-api/group__objects_ga5eda265b5d32cfcc6309eaf41423fd8d.html
index 9e8b9367..ce77f460 100644
--- a/c-api/group__objects_ga5eda265b5d32cfcc6309eaf41423fd8d.html
+++ b/c-api/group__objects_ga5eda265b5d32cfcc6309eaf41423fd8d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: string_len
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -185,7 +189,7 @@ $(function() {
diff --git a/c-api/group__objects_ga5f531cd0a013c0e3d7d48245061c78ea.html b/c-api/group__objects_ga5f531cd0a013c0e3d7d48245061c78ea.html
index 63757548..85af6a90 100644
--- a/c-api/group__objects_ga5f531cd0a013c0e3d7d48245061c78ea.html
+++ b/c-api/group__objects_ga5f531cd0a013c0e3d7d48245061c78ea.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: make_boolean
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -184,7 +188,7 @@ $(function() {
diff --git a/c-api/group__objects_ga6436a6295c083692d3d5ed06a5e8678f.html b/c-api/group__objects_ga6436a6295c083692d3d5ed06a5e8678f.html
index b635f244..dbed506d 100644
--- a/c-api/group__objects_ga6436a6295c083692d3d5ed06a5e8678f.html
+++ b/c-api/group__objects_ga6436a6295c083692d3d5ed06a5e8678f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: set_pair
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: n->hdr.grayed = 0; \
n->hdr.immutable = 0; \
n->pair_car = a; \
n->pair_cdr = d;
#define gc_color_red
Definition: types.h:296
-
-
+
Value:
+
n->hdr.grayed = 0; \
+
n->hdr.immutable = 0; \
+
+
n->pair_car = a; \
+
n->pair_cdr = d;
+
Set members of the given pair
Parameters
+
+ n - Pointer to a pair object
+ a - Object to assign to car
+ d - Object to assign to cdr
+
+
+
+
+#define gc_color_red
Definition: types.h:297
+@ pair_tag
Definition: types.h:64
diff --git a/c-api/group__objects_ga6a4703068df1175e2de1ebcfdd818254.html b/c-api/group__objects_ga6a4703068df1175e2de1ebcfdd818254.html
index 08180591..184f6287 100644
--- a/c-api/group__objects_ga6a4703068df1175e2de1ebcfdd818254.html
+++ b/c-api/group__objects_ga6a4703068df1175e2de1ebcfdd818254.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: defsymbol
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -184,7 +188,7 @@ $(function() {
diff --git a/c-api/group__objects_ga6d259e87f479319faf0c43f2fbc3b98f.html b/c-api/group__objects_ga6d259e87f479319faf0c43f2fbc3b98f.html
index 990f2da3..98e0cc8e 100644
--- a/c-api/group__objects_ga6d259e87f479319faf0c43f2fbc3b98f.html
+++ b/c-api/group__objects_ga6d259e87f479319faf0c43f2fbc3b98f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: boolean_f
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -181,7 +185,7 @@ $(function() {
diff --git a/c-api/group__objects_ga6e2275016b341ac6b813eefbced33d77.html b/c-api/group__objects_ga6e2275016b341ac6b813eefbced33d77.html
index 4dd3db06..ebe5e4d3 100644
--- a/c-api/group__objects_ga6e2275016b341ac6b813eefbced33d77.html
+++ b/c-api/group__objects_ga6e2275016b341ac6b813eefbced33d77.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: symbol
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -180,7 +184,7 @@ $(function() {
diff --git a/c-api/group__objects_ga6f0aa10d70aa4188e768364227e6abbd.html b/c-api/group__objects_ga6f0aa10d70aa4188e768364227e6abbd.html
index 91fa086d..6d0db772 100644
--- a/c-api/group__objects_ga6f0aa10d70aa4188e768364227e6abbd.html
+++ b/c-api/group__objects_ga6f0aa10d70aa4188e768364227e6abbd.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: inline_function_type
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -181,7 +185,7 @@ $(function() {
diff --git a/c-api/group__objects_ga70f87e482f5b1dcd6f0b26ae3e9d4426.html b/c-api/group__objects_ga70f87e482f5b1dcd6f0b26ae3e9d4426.html
index d7110196..62693c42 100644
--- a/c-api/group__objects_ga70f87e482f5b1dcd6f0b26ae3e9d4426.html
+++ b/c-api/group__objects_ga70f87e482f5b1dcd6f0b26ae3e9d4426.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: make_double
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: n.hdr.grayed = 0; \
n.value = v;
#define gc_color_red
Definition: types.h:296
-
gc_header_type hdr
Definition: types.h:877
-
Double-precision floating point type, also known as a flonum.
Definition: types.h:876
-
-
+
Value:
+
+
n.hdr.grayed = 0; \
+
+
n.value = v;
Create a new double in the nursery
@@ -196,11 +200,16 @@ $(function() {
+#define gc_color_red
Definition: types.h:297
+gc_header_type hdr
Definition: types.h:878
+
+@ double_tag
Definition: types.h:58
+Double-precision floating point type, also known as a flonum.
Definition: types.h:877
diff --git a/c-api/group__objects_ga71301352e6ef9a0fcf7b0a8bae72c535.html b/c-api/group__objects_ga71301352e6ef9a0fcf7b0a8bae72c535.html
index 4bdba4f3..754a50e3 100644
--- a/c-api/group__objects_ga71301352e6ef9a0fcf7b0a8bae72c535.html
+++ b/c-api/group__objects_ga71301352e6ef9a0fcf7b0a8bae72c535.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: object
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -181,7 +185,7 @@ $(function() {
diff --git a/c-api/group__objects_ga71e6b9c9a0b83932ce3443595ec290c5.html b/c-api/group__objects_ga71e6b9c9a0b83932ce3443595ec290c5.html
index 404bd17b..4c9d01b3 100644
--- a/c-api/group__objects_ga71e6b9c9a0b83932ce3443595ec290c5.html
+++ b/c-api/group__objects_ga71e6b9c9a0b83932ce3443595ec290c5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: return_copy
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: { \
tag_type t; \
object obj = o; \
return obj; \
return ptr; \
} else { \
return obj; \
} \
}
#define gc_color_red
Definition: types.h:296
-
-
#define type_of(obj)
Definition: types.h:91
-
#define double_value(x)
Definition: types.h:908
-
A union of all the constant-size objects.
Definition: types.h:1476
-
+
Value: { \
+
tag_type t; \
+
object obj = o; \
+
+
return obj; \
+
+
+
+
+
+
+
return ptr; \
+
} else { \
+
return obj; \
+
} \
+
}
@@ -196,11 +210,17 @@ $(function() {
+#define gc_color_red
Definition: types.h:297
+#define double_value(x)
Definition: types.h:910
+@ double_tag
Definition: types.h:58
+
+#define type_of(obj)
Definition: types.h:92
+A union of all the constant-size objects.
Definition: types.h:1497
diff --git a/c-api/group__objects_ga725581f933bd1567cd1c7fc2e984100d.html b/c-api/group__objects_ga725581f933bd1567cd1c7fc2e984100d.html
index d100be75..07422e0c 100644
--- a/c-api/group__objects_ga725581f933bd1567cd1c7fc2e984100d.html
+++ b/c-api/group__objects_ga725581f933bd1567cd1c7fc2e984100d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: make_string_noalloc
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: cs.num_cp = length; \
cs.str = s; }
int len
Definition: types.h:935
-
#define gc_color_red
Definition: types.h:296
-
-
-
-
The string type.
Definition: types.h:931
-
-
gc_header_type hdr
Definition: types.h:932
+
Value:
+
+
+
cs.num_cp = length; \
+
cs.str = s; }
Create a string object using the given C string and length. No allocation is done for the given C string.
@@ -205,11 +206,19 @@ $(function() {
+#define gc_color_red
Definition: types.h:297
+
+
+int len
Definition: types.h:937
+
+gc_header_type hdr
Definition: types.h:934
+The string type.
Definition: types.h:933
+@ string_tag
Definition: types.h:67
diff --git a/c-api/group__objects_ga73dd5d61a8b9077d326a0a4046cbee19.html b/c-api/group__objects_ga73dd5d61a8b9077d326a0a4046cbee19.html
index df86e243..ca4ff68b 100644
--- a/c-api/group__objects_ga73dd5d61a8b9077d326a0a4046cbee19.html
+++ b/c-api/group__objects_ga73dd5d61a8b9077d326a0a4046cbee19.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: make_utf8_string_with_len
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: { int len = length; \
cs.hdr.grayed = 0; \
cs.hdr.immutable = 0; \
cs.num_cp = num_code_points; \
cs.str = alloca(sizeof (char ) * (len + 1)); \
memcpy(cs.
str , s, len); \
cs.str[len] = '\0' ;}
int len
Definition: types.h:935
-
#define gc_color_red
Definition: types.h:296
-
-
char * str
Definition: types.h:936
-
The string type.
Definition: types.h:931
-
-
gc_header_type hdr
Definition: types.h:932
+
Value:
+
{ int len = length; \
+
+
cs.hdr.grayed = 0; \
+
cs.hdr.immutable = 0; \
+
+
cs.num_cp = num_code_points; \
+
cs.str = alloca(sizeof (char ) * (len + 1)); \
+
memcpy(cs.
str , s, len); \
+
cs.str[len] = '\0' ;}
Create a new string with the given length (so it does not need to be computed)
@@ -210,11 +217,18 @@ $(function() {
+#define gc_color_red
Definition: types.h:297
+int len
Definition: types.h:937
+char * str
Definition: types.h:938
+
+gc_header_type hdr
Definition: types.h:934
+The string type.
Definition: types.h:933
+@ string_tag
Definition: types.h:67
diff --git a/c-api/group__objects_ga751c3b9362007d827f8fa6668415e1bf.html b/c-api/group__objects_ga751c3b9362007d827f8fa6668415e1bf.html
index 2acd7251..da3345db 100644
--- a/c-api/group__objects_ga751c3b9362007d827f8fa6668415e1bf.html
+++ b/c-api/group__objects_ga751c3b9362007d827f8fa6668415e1bf.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: make_c_opaque
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: var.hdr.grayed = 0; \
var.hdr.immutable = 0; \
var.collect_ptr = 0; \
var.ptr = p;
-
#define gc_color_red
Definition: types.h:296
-
-
gc_header_type hdr
Definition: types.h:702
-
C Opaque type - a wrapper around a pointer of any type.
Definition: types.h:701
+
Value:
+
+
var.hdr.grayed = 0; \
+
var.hdr.immutable = 0; \
+
+
var.collect_ptr = 0; \
+
var.ptr = p;
Create a new opaque in the nursery
@@ -196,11 +202,16 @@ $(function() {
+#define gc_color_red
Definition: types.h:297
+C Opaque type - a wrapper around a pointer of any type.
Definition: types.h:702
+gc_header_type hdr
Definition: types.h:703
+
+@ c_opaque_tag
Definition: types.h:55
diff --git a/c-api/group__objects_ga7fa3637d2b9eed45f72d6ab2456babdc.html b/c-api/group__objects_ga7fa3637d2b9eed45f72d6ab2456babdc.html
index 5a126883..a9f148c9 100644
--- a/c-api/group__objects_ga7fa3637d2b9eed45f72d6ab2456babdc.html
+++ b/c-api/group__objects_ga7fa3637d2b9eed45f72d6ab2456babdc.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: mmacro
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: c.hdr.grayed = 0; \
c.fn = f; \
c.num_args = -1;
#define gc_color_red
Definition: types.h:296
-
-
-
Closure for a macro.
Definition: types.h:1376
-
gc_header_type hdr
Definition: types.h:1377
+
Value:
+
+
c.hdr.grayed = 0; \
+
+
c.fn = f; \
+
c.num_args = -1;
@@ -195,11 +200,16 @@ $(function() {
+#define gc_color_red
Definition: types.h:297
+gc_header_type hdr
Definition: types.h:1398
+
+Closure for a macro.
Definition: types.h:1397
+@ macro_tag
Definition: types.h:52
diff --git a/c-api/group__objects_ga8a152ec682fefb21a2fd394bb986e362.html b/c-api/group__objects_ga8a152ec682fefb21a2fd394bb986e362.html
index 0807d4cd..0710d21c 100644
--- a/c-api/group__objects_ga8a152ec682fefb21a2fd394bb986e362.html
+++ b/c-api/group__objects_ga8a152ec682fefb21a2fd394bb986e362.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: BIGNUM_CALL
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: { \
int __bn_mp_rv; \
if ((__bn_mp_rv = (x)) != MP_OKAY) { \
fprintf(stderr, "Error calling bignum function: %s\n" , \
mp_error_to_string(__bn_mp_rv)); \
exit(1); \
} \
}
Helper for handling return value of a bignum function call
+
Value: { \
+
int __bn_mp_rv; \
+
if ((__bn_mp_rv = (x)) != MP_OKAY) { \
+
fprintf(stderr, "Error calling bignum function: %s\n" , \
+
mp_error_to_string(__bn_mp_rv)); \
+
exit(1); \
+
} \
+
}
+
Helper for handling return value of a bignum function call
@@ -185,7 +197,7 @@ $(function() {
diff --git a/c-api/group__objects_ga8a9bc31dff7fe492afa7cf4dfc4d9b0d.html b/c-api/group__objects_ga8a9bc31dff7fe492afa7cf4dfc4d9b0d.html
index 133717a7..eb9679b4 100644
--- a/c-api/group__objects_ga8a9bc31dff7fe492afa7cf4dfc4d9b0d.html
+++ b/c-api/group__objects_ga8a9bc31dff7fe492afa7cf4dfc4d9b0d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: mclosure1
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: c.hdr.grayed = 0; \
c.fn = f; \
c.num_args = -1; \
c.element = a;
A closed-over function with one variable.
Definition: types.h:1391
-
#define gc_color_red
Definition: types.h:296
-
-
-
gc_header_type hdr
Definition: types.h:1392
-
+
Value:
+
+
c.hdr.grayed = 0; \
+
+
c.fn = f; \
+
c.num_args = -1; \
+
c.element = a;
+
Create a closure1 object in the nursery
+
+gc_header_type hdr
Definition: types.h:1413
+#define gc_color_red
Definition: types.h:297
+A closed-over function with one variable.
Definition: types.h:1412
+
+@ closure1_tag
Definition: types.h:50
diff --git a/c-api/group__objects_ga8f768c6878dfbc9b68e3a7a3e9494f22.html b/c-api/group__objects_ga8f768c6878dfbc9b68e3a7a3e9494f22.html
index 7d29cad0..40440121 100644
--- a/c-api/group__objects_ga8f768c6878dfbc9b68e3a7a3e9494f22.html
+++ b/c-api/group__objects_ga8f768c6878dfbc9b68e3a7a3e9494f22.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: pair
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -180,7 +184,7 @@ $(function() {
diff --git a/c-api/group__objects_ga912dd162b927db2d32f7ae1087250a21.html b/c-api/group__objects_ga912dd162b927db2d32f7ae1087250a21.html
index da64f084..2c49f610 100644
--- a/c-api/group__objects_ga912dd162b927db2d32f7ae1087250a21.html
+++ b/c-api/group__objects_ga912dd162b927db2d32f7ae1087250a21.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: assign_double
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: double_value(pobj) = v;
#define gc_color_red
Definition: types.h:296
-
Double-precision floating point type, also known as a flonum.
Definition: types.h:876
-
+
Value:
+
+
+
double_value(pobj) = v;
Assign given double value to the given double object pointer
@@ -194,11 +199,14 @@ $(function() {
+#define gc_color_red
Definition: types.h:297
+@ double_tag
Definition: types.h:58
+Double-precision floating point type, also known as a flonum.
Definition: types.h:877
diff --git a/c-api/group__objects_ga94f57132c48116fac23e715e9d3f225b.html b/c-api/group__objects_ga94f57132c48116fac23e715e9d3f225b.html
index 7d00db18..182af877 100644
--- a/c-api/group__objects_ga94f57132c48116fac23e715e9d3f225b.html
+++ b/c-api/group__objects_ga94f57132c48116fac23e715e9d3f225b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: opaque_ptr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -185,7 +189,7 @@ $(function() {
diff --git a/c-api/group__objects_ga9a706fde12ea6e789c17db0103a8f646.html b/c-api/group__objects_ga9a706fde12ea6e789c17db0103a8f646.html
index 4b5132d9..0ac1afa1 100644
--- a/c-api/group__objects_ga9a706fde12ea6e789c17db0103a8f646.html
+++ b/c-api/group__objects_ga9a706fde12ea6e789c17db0103a8f646.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: make_string_with_len
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: { int len = length; \
cs.hdr.grayed = 0; \
cs.hdr.immutable = 0; \
cs.num_cp = len; \
cs.str = alloca(sizeof (char ) * (len + 1)); \
memcpy(cs.
str , s, len); \
cs.str[len] = '\0' ;}
int len
Definition: types.h:935
-
#define gc_color_red
Definition: types.h:296
-
-
char * str
Definition: types.h:936
-
The string type.
Definition: types.h:931
-
-
gc_header_type hdr
Definition: types.h:932
+
Value:
+
{ int len = length; \
+
+
cs.hdr.grayed = 0; \
+
cs.hdr.immutable = 0; \
+
+
cs.num_cp = len; \
+
cs.str = alloca(sizeof (char ) * (len + 1)); \
+
memcpy(cs.
str , s, len); \
+
cs.str[len] = '\0' ;}
Create a new string with the given length (so it does not need to be computed)
@@ -204,11 +211,18 @@ $(function() {
+#define gc_color_red
Definition: types.h:297
+int len
Definition: types.h:937
+char * str
Definition: types.h:938
+
+gc_header_type hdr
Definition: types.h:934
+The string type.
Definition: types.h:933
+@ string_tag
Definition: types.h:67
diff --git a/c-api/group__objects_ga9b04a2bc9f691d12c383dce41704914c.html b/c-api/group__objects_ga9b04a2bc9f691d12c383dce41704914c.html
index 5a6f2daa..df425fed 100644
--- a/c-api/group__objects_ga9b04a2bc9f691d12c383dce41704914c.html
+++ b/c-api/group__objects_ga9b04a2bc9f691d12c383dce41704914c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: set_cell_as_expr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -194,7 +198,7 @@ $(function() {
diff --git a/c-api/group__objects_gaa17fa155c777becaffb49f920070e2c6.html b/c-api/group__objects_gaa17fa155c777becaffb49f920070e2c6.html
index 676c77fa..890ffc40 100644
--- a/c-api/group__objects_gaa17fa155c777becaffb49f920070e2c6.html
+++ b/c-api/group__objects_gaa17fa155c777becaffb49f920070e2c6.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: list
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -180,7 +184,7 @@ $(function() {
diff --git a/c-api/group__objects_gaa24eb0b1b07c55f55e46819845ac6e94.html b/c-api/group__objects_gaa24eb0b1b07c55f55e46819845ac6e94.html
index 2dbacb01..e45edfa9 100644
--- a/c-api/group__objects_gaa24eb0b1b07c55f55e46819845ac6e94.html
+++ b/c-api/group__objects_gaa24eb0b1b07c55f55e46819845ac6e94.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: closureN
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -180,7 +184,7 @@ $(function() {
diff --git a/c-api/group__objects_gaa3c36eef86f29cdc2622cc74a6e02e9b.html b/c-api/group__objects_gaa3c36eef86f29cdc2622cc74a6e02e9b.html
index 760bde57..454aab70 100644
--- a/c-api/group__objects_gaa3c36eef86f29cdc2622cc74a6e02e9b.html
+++ b/c-api/group__objects_gaa3c36eef86f29cdc2622cc74a6e02e9b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: make_string
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: { int len = strlen(s); \
cs.hdr.grayed = 0; \
cs.hdr.immutable = 0; \
cs.num_cp = len; \
cs.len = len; \
cs.str = alloca(sizeof (char ) * (len + 1)); \
memcpy(cs.
str , s, len + 1);}
#define gc_color_red
Definition: types.h:296
-
-
char * str
Definition: types.h:936
-
The string type.
Definition: types.h:931
+
Value:
+
{ int len = strlen(s); \
+
+
cs.hdr.grayed = 0; \
+
cs.hdr.immutable = 0; \
+
+
cs.num_cp = len; \
+
cs.len = len; \
+
cs.str = alloca(sizeof (char ) * (len + 1)); \
+
memcpy(cs.
str , s, len + 1);}
Create a new string in the nursery
@@ -195,11 +205,15 @@ $(function() {
+#define gc_color_red
Definition: types.h:297
+char * str
Definition: types.h:938
+The string type.
Definition: types.h:933
+@ string_tag
Definition: types.h:67
diff --git a/c-api/group__objects_gaa40e3f8a1b55c81a3063a5e7e373b6de.html b/c-api/group__objects_gaa40e3f8a1b55c81a3063a5e7e373b6de.html
index ad19e38c..c7335f1e 100644
--- a/c-api/group__objects_gaa40e3f8a1b55c81a3063a5e7e373b6de.html
+++ b/c-api/group__objects_gaa40e3f8a1b55c81a3063a5e7e373b6de.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: prim
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
+
Is x a primitive object?
@@ -184,7 +189,7 @@ $(function() {
diff --git a/c-api/group__objects_gaa448bc1c4f5bf4789d3a13a4a3f0a780.html b/c-api/group__objects_gaa448bc1c4f5bf4789d3a13a4a3f0a780.html
index c033d3ad..9510e50c 100644
--- a/c-api/group__objects_gaa448bc1c4f5bf4789d3a13a4a3f0a780.html
+++ b/c-api/group__objects_gaa448bc1c4f5bf4789d3a13a4a3f0a780.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: atomic
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -180,7 +184,7 @@ $(function() {
diff --git a/c-api/group__objects_gaa4d9e4dd812bbeff1de52a5e50252926.html b/c-api/group__objects_gaa4d9e4dd812bbeff1de52a5e50252926.html
index 8def55da..02b15ab9 100644
--- a/c-api/group__objects_gaa4d9e4dd812bbeff1de52a5e50252926.html
+++ b/c-api/group__objects_gaa4d9e4dd812bbeff1de52a5e50252926.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: mutex
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -180,7 +184,7 @@ $(function() {
diff --git a/c-api/group__objects_gaa716d98bb53bbcd1333ffb3eebdf6504.html b/c-api/group__objects_gaa716d98bb53bbcd1333ffb3eebdf6504.html
new file mode 100644
index 00000000..0f911c52
--- /dev/null
+++ b/c-api/group__objects_gaa716d98bb53bbcd1333ffb3eebdf6504.html
@@ -0,0 +1,191 @@
+
+
+
+
+
+
+
+
Cyclone Scheme: function_type
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ function_type
+
+
+
+
+
+ typedef void(* function_type) (void *data, object clo, int argc, object *args)
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/group__objects_gab16b464c8e21447c6b11bb9202a3a4ae.html b/c-api/group__objects_gab16b464c8e21447c6b11bb9202a3a4ae.html
index 925c6383..6bf72fac 100644
--- a/c-api/group__objects_gab16b464c8e21447c6b11bb9202a3a4ae.html
+++ b/c-api/group__objects_gab16b464c8e21447c6b11bb9202a3a4ae.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: forward
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -185,7 +189,7 @@ $(function() {
diff --git a/c-api/group__objects_gab2133f7ea6596078cf6a90afbaa9b366.html b/c-api/group__objects_gab2133f7ea6596078cf6a90afbaa9b366.html
index 72963646..d0f52f88 100644
--- a/c-api/group__objects_gab2133f7ea6596078cf6a90afbaa9b366.html
+++ b/c-api/group__objects_gab2133f7ea6596078cf6a90afbaa9b366.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: make_port
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: p.hdr.grayed = 0; \
p.hdr.immutable = 0; \
p.fp = f; \
p.mode = m; \
p.flags = 0; \
p.line_num = 1; \
p.col_num = 1; \
p.buf_idx = 0; \
p.tok_start = 0; \
p.tok_end = 0; \
p.tok_buf = NULL; \
p.tok_buf_len = 0; \
p.mem_buf = NULL; \
p.mem_buf_len = 0; \
p.str_bv_in_mem_buf = NULL; \
p.str_bv_in_mem_buf_len = 0; \
p.read_len = 1;
The port object type.
Definition: types.h:1091
-
#define gc_color_red
Definition: types.h:296
-
-
-
gc_header_type hdr
Definition: types.h:1092
+
Value:
+
+
p.hdr.grayed = 0; \
+
p.hdr.immutable = 0; \
+
+
p.fp = f; \
+
p.mode = m; \
+
p.flags = 0; \
+
p.line_num = 1; \
+
p.col_num = 1; \
+
p.buf_idx = 0; \
+
p.tok_start = 0; \
+
p.tok_end = 0; \
+
p.tok_buf = NULL; \
+
p.tok_buf_len = 0; \
+
p.mem_buf = NULL; \
+
p.mem_buf_len = 0; \
+
p.str_bv_in_mem_buf = NULL; \
+
p.str_bv_in_mem_buf_len = 0; \
+
p.read_len = 1;
Create a new port object in the nursery
@@ -202,11 +221,16 @@ $(function() {
+#define gc_color_red
Definition: types.h:297
+The port object type.
Definition: types.h:1096
+
+@ port_tag
Definition: types.h:65
+gc_header_type hdr
Definition: types.h:1097
diff --git a/c-api/group__objects_gabd1aba0ed6f4c50c9ea557db13ee9e9c.html b/c-api/group__objects_gabd1aba0ed6f4c50c9ea557db13ee9e9c.html
index 22334942..05b685cd 100644
--- a/c-api/group__objects_gabd1aba0ed6f4c50c9ea557db13ee9e9c.html
+++ b/c-api/group__objects_gabd1aba0ed6f4c50c9ea557db13ee9e9c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: make_empty_bytevector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: v.hdr.grayed = 0; \
v.hdr.immutable = 0; \
v.len = 0; \
v.data = NULL;
#define gc_color_red
Definition: types.h:296
-
-
-
Bytevector type.
Definition: types.h:1202
-
gc_header_type hdr
Definition: types.h:1203
+
Value:
+
+
v.hdr.grayed = 0; \
+
v.hdr.immutable = 0; \
+
+
v.len = 0; \
+
v.data = NULL;
Create a new bytevector in the nursery
@@ -186,11 +192,16 @@ $(function() {
+#define gc_color_red
Definition: types.h:297
+Bytevector type.
Definition: types.h:1209
+
+gc_header_type hdr
Definition: types.h:1210
+@ bytevector_tag
Definition: types.h:54
diff --git a/c-api/group__objects_gac02607b62d3c09dc61e88945a4ad3d46.html b/c-api/group__objects_gac02607b62d3c09dc61e88945a4ad3d46.html
index 9d914765..3468578a 100644
--- a/c-api/group__objects_gac02607b62d3c09dc61e88945a4ad3d46.html
+++ b/c-api/group__objects_gac02607b62d3c09dc61e88945a4ad3d46.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: make_utf8_string
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: { int len = strlen(s); \
cs.hdr.grayed = 0; \
cs.hdr.immutable = 0; \
Cyc_rt_raise_msg(data, "Invalid UTF-8 characters in string" ); \
} \
cs.len = len; \
cs.str = alloca(sizeof (char ) * (len + 1)); \
memcpy(cs.
str , s, len + 1);}
int num_cp
Definition: types.h:934
-
#define gc_color_red
Definition: types.h:296
-
-
char * str
Definition: types.h:936
-
The string type.
Definition: types.h:931
-
int Cyc_utf8_count_code_points(uint8_t *s)
Count the number of code points in a string. Based on example code from Bjoern Hoehrmann.
Definition: runtime.c:7945
+
Value:
+
{ int len = strlen(s); \
+
+
cs.hdr.grayed = 0; \
+
cs.hdr.immutable = 0; \
+
+
+
+
Cyc_rt_raise_msg(data, "Invalid UTF-8 characters in string" ); \
+
} \
+
cs.len = len; \
+
cs.str = alloca(sizeof (char ) * (len + 1)); \
+
memcpy(cs.
str , s, len + 1);}
Create a new string in the nursery
@@ -203,11 +214,17 @@ $(function() {
+#define gc_color_red
Definition: types.h:297
+int num_cp
Definition: types.h:936
+char * str
Definition: types.h:938
+The string type.
Definition: types.h:933
+@ string_tag
Definition: types.h:67
+int Cyc_utf8_count_code_points(uint8_t *s)
Count the number of code points in a string. Based on example code from Bjoern Hoehrmann.
Definition: runtime.c:8082
diff --git a/c-api/group__objects_gac4774102388fcf3eaa78c419e53c144a.html b/c-api/group__objects_gac4774102388fcf3eaa78c419e53c144a.html
index f4db68b2..ea089b99 100644
--- a/c-api/group__objects_gac4774102388fcf3eaa78c419e53c144a.html
+++ b/c-api/group__objects_gac4774102388fcf3eaa78c419e53c144a.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: set_pair_as_expr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: ((
pair )(n))->hdr.grayed = 0, \
((
pair )(n))->hdr.immutable = 0, \
((
pair )(n))->pair_car = a, \
((
pair )(n))->pair_cdr = d, \
(n))
The pair (cons) type.
Definition: types.h:1239
-
#define gc_color_red
Definition: types.h:296
-
-
pair_type * pair
Definition: types.h:1246
-
+
Value:
+
((
pair )(n))->hdr.grayed = 0, \
+
((
pair )(n))->hdr.immutable = 0, \
+
+
((
pair )(n))->pair_car = a, \
+
((
pair )(n))->pair_cdr = d, \
+
(n))
+
Set members of the given pair, using a single expression
Parameters
+
+ n - Pointer to a pair object
+ a - Object to assign to car
+ d - Object to assign to cdr
+
+
+
+
+#define gc_color_red
Definition: types.h:297
+The pair (cons) type.
Definition: types.h:1247
+pair_type * pair
Definition: types.h:1254
+@ pair_tag
Definition: types.h:64
diff --git a/c-api/group__objects_gad29b52674c22bac1fec21b530d812fb9.html b/c-api/group__objects_gad29b52674c22bac1fec21b530d812fb9.html
index 722cd54b..0078bd46 100644
--- a/c-api/group__objects_gad29b52674c22bac1fec21b530d812fb9.html
+++ b/c-api/group__objects_gad29b52674c22bac1fec21b530d812fb9.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: alloca_empty_bytevector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: v->hdr.grayed = 0; \
v->hdr.immutable = 0; \
v->len = 0; \
v->data = NULL;
#define gc_color_red
Definition: types.h:296
-
-
Bytevector type.
Definition: types.h:1202
-
+
Value:
+
+
v->hdr.grayed = 0; \
+
v->hdr.immutable = 0; \
+
+
v->len = 0; \
+
v->data = NULL;
+
Create an empty bytevector in the nursery using alloca
+
+#define gc_color_red
Definition: types.h:297
+Bytevector type.
Definition: types.h:1209
+@ bytevector_tag
Definition: types.h:54
diff --git a/c-api/group__objects_gad512060a0fb72905a6e54fd06589ca32.html b/c-api/group__objects_gad512060a0fb72905a6e54fd06589ca32.html
index 7c08462a..e16555ce 100644
--- a/c-api/group__objects_gad512060a0fb72905a6e54fd06589ca32.html
+++ b/c-api/group__objects_gad512060a0fb72905a6e54fd06589ca32.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: alloc_bignum
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -195,7 +199,7 @@ $(function() {
diff --git a/c-api/group__objects_gadc0228b3e0f11950f0647be264d12c69.html b/c-api/group__objects_gadc0228b3e0f11950f0647be264d12c69.html
index 79c1f3c6..32583fdc 100644
--- a/c-api/group__objects_gadc0228b3e0f11950f0647be264d12c69.html
+++ b/c-api/group__objects_gadc0228b3e0f11950f0647be264d12c69.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: alloc_string
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: int heap_grown; \
&heap_grown); \
} else { \
((
string_type *)_s)->str = alloca(
sizeof (
char ) * (_len + 1)); \
}
-
#define gc_color_red
Definition: types.h:296
-
-
const object boolean_f
Definition: runtime.c:389
-
The string type.
Definition: types.h:931
-
void * gc_alloc(gc_heap_root *h, size_t size, char *obj, gc_thread_data *thd, int *heap_grown)
Allocate memory on the heap for an object.
Definition: gc.c:1359
-
#define MAX_STACK_OBJ
Definition: types.h:512
+
Value:
+
int heap_grown; \
+
+
+
+
+
&heap_grown); \
+
+
+
+
+
+
+
+
} else { \
+
+
+
+
+
+
+
+
((
string_type *)_s)->str = alloca(
sizeof (
char ) * (_len + 1)); \
+
}
Allocate a new string, either on the stack or heap depending upon size
@@ -210,11 +231,18 @@ $(function() {
+void * gc_alloc(gc_heap_root *h, size_t size, char *obj, gc_thread_data *thd, int *heap_grown)
Allocate memory on the heap for an object.
Definition: gc.c:1360
+#define gc_color_red
Definition: types.h:297
+
+The string type.
Definition: types.h:933
+@ string_tag
Definition: types.h:67
+#define MAX_STACK_OBJ
Definition: types.h:513
+const object boolean_f
Definition: runtime.c:397
diff --git a/c-api/group__objects_gadc435cbdc2f9b0ad8f83361e388df0bf.html b/c-api/group__objects_gadc435cbdc2f9b0ad8f83361e388df0bf.html
index 68dd122b..fe847ba6 100644
--- a/c-api/group__objects_gadc435cbdc2f9b0ad8f83361e388df0bf.html
+++ b/c-api/group__objects_gadc435cbdc2f9b0ad8f83361e388df0bf.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: complex_num_value
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -185,7 +189,7 @@ $(function() {
diff --git a/c-api/group__objects_gadd03659641bf4c2516cc75011ef9fbbb.html b/c-api/group__objects_gadd03659641bf4c2516cc75011ef9fbbb.html
index 2e52fe29..5847464e 100644
--- a/c-api/group__objects_gadd03659641bf4c2516cc75011ef9fbbb.html
+++ b/c-api/group__objects_gadd03659641bf4c2516cc75011ef9fbbb.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: bignum_value
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -185,7 +189,7 @@ $(function() {
diff --git a/c-api/group__objects_gadd2e786b8f1d394adf9fcc2e2ea0f6ab.html b/c-api/group__objects_gadd2e786b8f1d394adf9fcc2e2ea0f6ab.html
index 654b5307..f6510efc 100644
--- a/c-api/group__objects_gadd2e786b8f1d394adf9fcc2e2ea0f6ab.html
+++ b/c-api/group__objects_gadd2e786b8f1d394adf9fcc2e2ea0f6ab.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: boolean_t
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -182,7 +186,7 @@ $(function() {
diff --git a/c-api/group__objects_gade7867dd7da367055c73652132e4d3a0.html b/c-api/group__objects_gade7867dd7da367055c73652132e4d3a0.html
index 5479c854..5737f6c9 100644
--- a/c-api/group__objects_gade7867dd7da367055c73652132e4d3a0.html
+++ b/c-api/group__objects_gade7867dd7da367055c73652132e4d3a0.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: make_input_port
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: p.hdr.grayed = 0; \
p.hdr.immutable = 0; \
p.fp = f; \
p.mode = 1; \
p.flags = 1; \
p.line_num = 1; \
p.col_num = 1; \
p.buf_idx = 0; \
p.tok_start = 0; \
p.tok_end = 0; \
p.mem_buf_len = 0; \
p.str_bv_in_mem_buf = NULL; \
p.str_bv_in_mem_buf_len = 0; \
p.read_len = rl;
The port object type.
Definition: types.h:1091
-
#define CYC_IO_BUF_LEN
Definition: types.h:1114
-
#define gc_color_red
Definition: types.h:296
-
-
-
gc_header_type hdr
Definition: types.h:1092
-
+
Value:
+
+
p.hdr.grayed = 0; \
+
p.hdr.immutable = 0; \
+
+
p.fp = f; \
+
p.mode = 1; \
+
p.flags = 1; \
+
p.line_num = 1; \
+
p.col_num = 1; \
+
p.buf_idx = 0; \
+
p.tok_start = 0; \
+
p.tok_end = 0; \
+
+
+
+
p.mem_buf_len = 0; \
+
p.str_bv_in_mem_buf = NULL; \
+
p.str_bv_in_mem_buf_len = 0; \
+
p.read_len = rl;
+
Create a new input port object in the nursery
+
+#define gc_color_red
Definition: types.h:297
+The port object type.
Definition: types.h:1096
+
+@ port_tag
Definition: types.h:65
+gc_header_type hdr
Definition: types.h:1097
+#define CYC_IO_BUF_LEN
Definition: types.h:1119
diff --git a/c-api/group__objects_gadef3952590de7c235de16c837a8b10bc.html b/c-api/group__objects_gadef3952590de7c235de16c837a8b10bc.html
index 142979e5..06e842cc 100644
--- a/c-api/group__objects_gadef3952590de7c235de16c837a8b10bc.html
+++ b/c-api/group__objects_gadef3952590de7c235de16c837a8b10bc.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: CYC_IO_BUF_LEN
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -180,7 +184,7 @@ $(function() {
diff --git a/c-api/group__objects_gae0333e4033477e135f2f947246901c06.html b/c-api/group__objects_gae0333e4033477e135f2f947246901c06.html
new file mode 100644
index 00000000..bb7781f3
--- /dev/null
+++ b/c-api/group__objects_gae0333e4033477e135f2f947246901c06.html
@@ -0,0 +1,191 @@
+
+
+
+
+
+
+
+
Cyclone Scheme: primitive_function_type
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ primitive_function_type
+
+
+
+
+
+ typedef void(* primitive_function_type) (void *data, object cont, object args)
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/group__objects_gae2d0b732a9890601f5fc5c12f28110c6.html b/c-api/group__objects_gae2d0b732a9890601f5fc5c12f28110c6.html
index a657f7e4..740e4840 100644
--- a/c-api/group__objects_gae2d0b732a9890601f5fc5c12f28110c6.html
+++ b/c-api/group__objects_gae2d0b732a9890601f5fc5c12f28110c6.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: string_num_cp
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -185,7 +189,7 @@ $(function() {
diff --git a/c-api/group__objects_gae6274feab1df12ca5a56834595b8ee86.html b/c-api/group__objects_gae6274feab1df12ca5a56834595b8ee86.html
index 5e4a4aad..53cb89aa 100644
--- a/c-api/group__objects_gae6274feab1df12ca5a56834595b8ee86.html
+++ b/c-api/group__objects_gae6274feab1df12ca5a56834595b8ee86.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: defprimitive
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: static const object primitive_##name = &name##_primitive
A function built into the runtime.
Definition: types.h:1455
-
+
Value:
+
static const object primitive_##name = &name##_primitive
@@ -198,11 +202,13 @@ $(function() {
+@ primitive_tag
Definition: types.h:66
+A function built into the runtime.
Definition: types.h:1473
diff --git a/c-api/group__objects_gae63d7e8d892356552f23e2438857df90.html b/c-api/group__objects_gae63d7e8d892356552f23e2438857df90.html
index dbde5f29..a5503df3 100644
--- a/c-api/group__objects_gae63d7e8d892356552f23e2438857df90.html
+++ b/c-api/group__objects_gae63d7e8d892356552f23e2438857df90.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: maclosure0
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: c.hdr.grayed = 0; \
c.fn = f; \
c.num_args = na;
A closed-over function with no variables.
Definition: types.h:1384
-
#define gc_color_red
Definition: types.h:296
-
-
-
gc_header_type hdr
Definition: types.h:1385
+
Value:
+
+
c.hdr.grayed = 0; \
+
+
c.fn = f; \
+
c.num_args = na;
@@ -201,11 +206,16 @@ $(function() {
+A closed-over function with no variables.
Definition: types.h:1405
+#define gc_color_red
Definition: types.h:297
+
+gc_header_type hdr
Definition: types.h:1406
+@ closure0_tag
Definition: types.h:49
diff --git a/c-api/group__objects_gaeaee2cdcfcff096e1d141208b7aec1fb.html b/c-api/group__objects_gaeaee2cdcfcff096e1d141208b7aec1fb.html
index c6520bf8..8534b920 100644
--- a/c-api/group__objects_gaeaee2cdcfcff096e1d141208b7aec1fb.html
+++ b/c-api/group__objects_gaeaee2cdcfcff096e1d141208b7aec1fb.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: boolean
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -180,7 +184,7 @@ $(function() {
diff --git a/c-api/group__objects_gaecab6685ca6d8f1dc2a1388ae59e6ca6.html b/c-api/group__objects_gaecab6685ca6d8f1dc2a1388ae59e6ca6.html
index 332a702a..d4cbe93e 100644
--- a/c-api/group__objects_gaecab6685ca6d8f1dc2a1388ae59e6ca6.html
+++ b/c-api/group__objects_gaecab6685ca6d8f1dc2a1388ae59e6ca6.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: bytevector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -180,7 +184,7 @@ $(function() {
diff --git a/c-api/group__objects_gaee76a907bfeafb5d931e547b3556f9f6.html b/c-api/group__objects_gaee76a907bfeafb5d931e547b3556f9f6.html
index 49b54ae2..5f3158c8 100644
--- a/c-api/group__objects_gaee76a907bfeafb5d931e547b3556f9f6.html
+++ b/c-api/group__objects_gaee76a907bfeafb5d931e547b3556f9f6.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: symbol_desc
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -184,7 +188,7 @@ $(function() {
diff --git a/c-api/group__objects_gaf08305e847b96d1bbe60be47d08e9589.html b/c-api/group__objects_gaf08305e847b96d1bbe60be47d08e9589.html
index e7c77b06..1df845ef 100644
--- a/c-api/group__objects_gaf08305e847b96d1bbe60be47d08e9589.html
+++ b/c-api/group__objects_gaf08305e847b96d1bbe60be47d08e9589.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: tag_type
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -181,7 +185,7 @@ $(function() {
diff --git a/c-api/group__objects_gaf3f619c909a02d493a554abfaad99ff6.html b/c-api/group__objects_gaf3f619c909a02d493a554abfaad99ff6.html
index 7aa25300..bd66e7bf 100644
--- a/c-api/group__objects_gaf3f619c909a02d493a554abfaad99ff6.html
+++ b/c-api/group__objects_gaf3f619c909a02d493a554abfaad99ff6.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_VOID
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -181,7 +185,7 @@ $(function() {
diff --git a/c-api/group__objects_gaf69ff213c1057ebc0886f9557b7c00cd.html b/c-api/group__objects_gaf69ff213c1057ebc0886f9557b7c00cd.html
index abd3ad48..90266a02 100644
--- a/c-api/group__objects_gaf69ff213c1057ebc0886f9557b7c00cd.html
+++ b/c-api/group__objects_gaf69ff213c1057ebc0886f9557b7c00cd.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: make_cell
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -195,7 +199,7 @@ $(function() {
diff --git a/c-api/group__objects_gaf6c7e54de777903b917d3005d048682f.html b/c-api/group__objects_gaf6c7e54de777903b917d3005d048682f.html
index d120105d..3bfa074a 100644
--- a/c-api/group__objects_gaf6c7e54de777903b917d3005d048682f.html
+++ b/c-api/group__objects_gaf6c7e54de777903b917d3005d048682f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: closure0
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -180,7 +184,7 @@ $(function() {
diff --git a/c-api/group__objects_gaf7d58df9cd3ccc4d06ebcb8bb920fa31.html b/c-api/group__objects_gaf7d58df9cd3ccc4d06ebcb8bb920fa31.html
index f792989a..bdd3e897 100644
--- a/c-api/group__objects_gaf7d58df9cd3ccc4d06ebcb8bb920fa31.html
+++ b/c-api/group__objects_gaf7d58df9cd3ccc4d06ebcb8bb920fa31.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: make_pair
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: n.hdr.grayed = 0; \
n.hdr.immutable = 0; \
n.pair_car = a; \
n.pair_cdr = d;
The pair (cons) type.
Definition: types.h:1239
-
#define gc_color_red
Definition: types.h:296
-
-
-
gc_header_type hdr
Definition: types.h:1240
+
Value:
+
+
n.hdr.grayed = 0; \
+
n.hdr.immutable = 0; \
+
+
n.pair_car = a; \
+
n.pair_cdr = d;
Create a new pair in the nursery
@@ -202,11 +208,16 @@ $(function() {
+#define gc_color_red
Definition: types.h:297
+The pair (cons) type.
Definition: types.h:1247
+
+gc_header_type hdr
Definition: types.h:1248
+@ pair_tag
Definition: types.h:64
diff --git a/c-api/group__objects_gaf9defd5753679e4fa891731cf487f8a8.html b/c-api/group__objects_gaf9defd5753679e4fa891731cf487f8a8.html
index 51e6c0d8..29aca316 100644
--- a/c-api/group__objects_gaf9defd5753679e4fa891731cf487f8a8.html
+++ b/c-api/group__objects_gaf9defd5753679e4fa891731cf487f8a8.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: alloc_bytevector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: int heap_grown; \
&heap_grown); \
} else { \
((
bytevector ) _bv)->data = alloca(
sizeof (
char ) * _len); \
}
bytevector_type * bytevector
Definition: types.h:1208
-
-
#define gc_color_red
Definition: types.h:296
-
const object boolean_f
Definition: runtime.c:389
-
-
Bytevector type.
Definition: types.h:1202
-
void * gc_alloc(gc_heap_root *h, size_t size, char *obj, gc_thread_data *thd, int *heap_grown)
Allocate memory on the heap for an object.
Definition: gc.c:1359
-
#define MAX_STACK_OBJ
Definition: types.h:512
-
+
Value:
+
int heap_grown; \
+
+
+
+
+
&heap_grown); \
+
+
+
+
+
+
+
} else { \
+
+
+
+
+
+
+
((
bytevector ) _bv)->data = alloca(
sizeof (
char ) * _len); \
+
}
+
Allocate a new bytevector, either on the stack or heap depending upon size
+
+void * gc_alloc(gc_heap_root *h, size_t size, char *obj, gc_thread_data *thd, int *heap_grown)
Allocate memory on the heap for an object.
Definition: gc.c:1360
+bytevector_type * bytevector
Definition: types.h:1215
+#define gc_color_red
Definition: types.h:297
+
+Bytevector type.
Definition: types.h:1209
+#define MAX_STACK_OBJ
Definition: types.h:513
+const object boolean_f
Definition: runtime.c:397
+@ bytevector_tag
Definition: types.h:54
diff --git a/c-api/group__objects_gafb4c53dab33ed607afad3adaa4ade650.html b/c-api/group__objects_gafb4c53dab33ed607afad3adaa4ade650.html
index e545cc36..3e5610cc 100644
--- a/c-api/group__objects_gafb4c53dab33ed607afad3adaa4ade650.html
+++ b/c-api/group__objects_gafb4c53dab33ed607afad3adaa4ade650.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cvar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -180,7 +184,7 @@ $(function() {
diff --git a/c-api/group__objects_gafcd07ec86021f462152490e171678496.html b/c-api/group__objects_gafcd07ec86021f462152490e171678496.html
index a4b213fe..f86b0e78 100644
--- a/c-api/group__objects_gafcd07ec86021f462152490e171678496.html
+++ b/c-api/group__objects_gafcd07ec86021f462152490e171678496.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: double_value
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
CYC_BINARY_PORT_FLAG
Cyc_EOF
CYC_IO_BUF_LEN
+
Cyc_RECORD_MARKER
Cyc_VOID
defprimitive
defsymbol
double_value
forward
-
function_type
-
function_type_va
+
function_type
inline_function_type
integer_value
list
@@ -141,6 +144,7 @@ $(function() {
prim
prim_name
primitive
+
primitive_function_type
quote_void
return_copy
set_cell_as_expr
@@ -185,7 +189,7 @@ $(function() {
diff --git a/c-api/group__prim.html b/c-api/group__prim.html
index 57103644..d86d2e86 100644
--- a/c-api/group__prim.html
+++ b/c-api/group__prim.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Primitives
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -140,8 +143,8 @@ Macros
#define global_set_id (id, glo, value) Cyc_global_set (data, id, (object *)&glo, value)
-#define load_varargs (var, arg_var, count)
-
+#define load_varargs (var, args_var, start, count)
+
@@ -172,11 +175,14 @@ Variables
Built-in Scheme functions provided by the runtime library.
+#define gc_color_red
Definition: types.h:297
+The pair (cons) type.
Definition: types.h:1247
+@ pair_tag
Definition: types.h:64
diff --git a/c-api/group__prim__bv.html b/c-api/group__prim__bv.html
index 6b0da091..e57e2765 100644
--- a/c-api/group__prim__bv.html
+++ b/c-api/group__prim__bv.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Bytevectors
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -98,7 +101,7 @@ Functions
diff --git a/c-api/group__prim__bv_ga0b62a20f48874cb5fb8418121b72b2b3.html b/c-api/group__prim__bv_ga0b62a20f48874cb5fb8418121b72b2b3.html
index cdc081d8..2667626f 100644
--- a/c-api/group__prim__bv_ga0b62a20f48874cb5fb8418121b72b2b3.html
+++ b/c-api/group__prim__bv_ga0b62a20f48874cb5fb8418121b72b2b3.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_utf82string
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__bv_ga3e04213524806312d93b1c3503858b77.html b/c-api/group__prim__bv_ga3e04213524806312d93b1c3503858b77.html
index 050068d0..5b6ef82b 100644
--- a/c-api/group__prim__bv_ga3e04213524806312d93b1c3503858b77.html
+++ b/c-api/group__prim__bv_ga3e04213524806312d93b1c3503858b77.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_bytevector_u8_ref
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__bv_ga423365d44b290937ddf888a7e7ea18bb.html b/c-api/group__prim__bv_ga423365d44b290937ddf888a7e7ea18bb.html
index 0ad870d3..d2219eda 100644
--- a/c-api/group__prim__bv_ga423365d44b290937ddf888a7e7ea18bb.html
+++ b/c-api/group__prim__bv_ga423365d44b290937ddf888a7e7ea18bb.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_bytevector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__bv_ga663739295e3881a95d2cf435280a196c.html b/c-api/group__prim__bv_ga663739295e3881a95d2cf435280a196c.html
index 31b9d848..8b016df8 100644
--- a/c-api/group__prim__bv_ga663739295e3881a95d2cf435280a196c.html
+++ b/c-api/group__prim__bv_ga663739295e3881a95d2cf435280a196c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_bytevector_copy
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__bv_ga709d31255187a8d8dcebcde528878e36.html b/c-api/group__prim__bv_ga709d31255187a8d8dcebcde528878e36.html
index 86c8b996..c3739b79 100644
--- a/c-api/group__prim__bv_ga709d31255187a8d8dcebcde528878e36.html
+++ b/c-api/group__prim__bv_ga709d31255187a8d8dcebcde528878e36.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_bytevector_u8_set
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__bv_gab7d18d4d12d5d66c70e75f950b3b5a9d.html b/c-api/group__prim__bv_gab7d18d4d12d5d66c70e75f950b3b5a9d.html
index 2ac94551..24bb078c 100644
--- a/c-api/group__prim__bv_gab7d18d4d12d5d66c70e75f950b3b5a9d.html
+++ b/c-api/group__prim__bv_gab7d18d4d12d5d66c70e75f950b3b5a9d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_bytevector_length
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__bv_gab82b4df8cc3ddca547ea29c7a19947cd.html b/c-api/group__prim__bv_gab82b4df8cc3ddca547ea29c7a19947cd.html
index 56a5c67e..21010c45 100644
--- a/c-api/group__prim__bv_gab82b4df8cc3ddca547ea29c7a19947cd.html
+++ b/c-api/group__prim__bv_gab82b4df8cc3ddca547ea29c7a19947cd.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_make_bytevector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__bv_gacf53b0c7cc4d95c79c3adef48b7d6b89.html b/c-api/group__prim__bv_gacf53b0c7cc4d95c79c3adef48b7d6b89.html
index a165d037..506fb115 100644
--- a/c-api/group__prim__bv_gacf53b0c7cc4d95c79c3adef48b7d6b89.html
+++ b/c-api/group__prim__bv_gacf53b0c7cc4d95c79c3adef48b7d6b89.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_string2utf8
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__bv_gadcab68e2eaa4d34e8c67395eab4d273e.html b/c-api/group__prim__bv_gadcab68e2eaa4d34e8c67395eab4d273e.html
index 87e09b0e..53656e07 100644
--- a/c-api/group__prim__bv_gadcab68e2eaa4d34e8c67395eab4d273e.html
+++ b/c-api/group__prim__bv_gadcab68e2eaa4d34e8c67395eab4d273e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_bytevector_append
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__ch.html b/c-api/group__prim__ch.html
index 5eb39cd4..f29cb91a 100644
--- a/c-api/group__prim__ch.html
+++ b/c-api/group__prim__ch.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Call history
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -86,11 +89,13 @@ Functions
Functions for maintaining call history.
+
+#define MAX_STACK_TRACES
Definition: types.h:142
diff --git a/c-api/group__prim__ch_ga4127fc5c21d280fe0b9b27e712963dea.html b/c-api/group__prim__ch_ga4127fc5c21d280fe0b9b27e712963dea.html
index e61d65d1..cd68c138 100644
--- a/c-api/group__prim__ch_ga4127fc5c21d280fe0b9b27e712963dea.html
+++ b/c-api/group__prim__ch_ga4127fc5c21d280fe0b9b27e712963dea.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_st_print
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__ch_gae0e610b66b390d47dcf4722e6735ff0f.html b/c-api/group__prim__ch_gae0e610b66b390d47dcf4722e6735ff0f.html
index 63e44b86..55981dc5 100644
--- a/c-api/group__prim__ch_gae0e610b66b390d47dcf4722e6735ff0f.html
+++ b/c-api/group__prim__ch_gae0e610b66b390d47dcf4722e6735ff0f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_st_add
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: { \
\
if ((char *)frame != thd->stack_prev_frame) { \
thd->stack_prev_frame = frame; \
thd->stack_traces[thd->stack_trace_idx] = frame; \
} \
}
-
#define MAX_STACK_TRACES
Definition: types.h:141
+
Value: { \
+
+
\
+
if ((char *)frame != thd->stack_prev_frame) { \
+
thd->stack_prev_frame = frame; \
+
thd->stack_traces[thd->stack_trace_idx] = frame; \
+
+
} \
+
}
Register a frame in the stack trace circular buffer.
Parameters
@@ -118,11 +128,13 @@ $(function() {
+
+
#define MAX_STACK_TRACES
Definition: types.h:142
diff --git a/c-api/group__prim__char.html b/c-api/group__prim__char.html
index c7552391..2cea45c5 100644
--- a/c-api/group__prim__char.html
+++ b/c-api/group__prim__char.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Characters
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -92,7 +95,7 @@ Functions
diff --git a/c-api/group__prim__char_ga1817620dfba439af739613d1de7ab331.html b/c-api/group__prim__char_ga1817620dfba439af739613d1de7ab331.html
index 1cd08b0b..09a56942 100644
--- a/c-api/group__prim__char_ga1817620dfba439af739613d1de7ab331.html
+++ b/c-api/group__prim__char_ga1817620dfba439af739613d1de7ab331.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_char_lt_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__char_ga29e4db9ac944011f4fc1d838358cac61.html b/c-api/group__prim__char_ga29e4db9ac944011f4fc1d838358cac61.html
index 4095db2b..df1b6758 100644
--- a/c-api/group__prim__char_ga29e4db9ac944011f4fc1d838358cac61.html
+++ b/c-api/group__prim__char_ga29e4db9ac944011f4fc1d838358cac61.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_char_gte_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__char_ga45d5196dd08f1fe999028b1c6edac88b.html b/c-api/group__prim__char_ga45d5196dd08f1fe999028b1c6edac88b.html
index 58db7d12..5cf5d05f 100644
--- a/c-api/group__prim__char_ga45d5196dd08f1fe999028b1c6edac88b.html
+++ b/c-api/group__prim__char_ga45d5196dd08f1fe999028b1c6edac88b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_char2integer
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__char_ga5816cdad5bf63f639cc51630e6ed4f14.html b/c-api/group__prim__char_ga5816cdad5bf63f639cc51630e6ed4f14.html
index 07cff620..5ed68fc0 100644
--- a/c-api/group__prim__char_ga5816cdad5bf63f639cc51630e6ed4f14.html
+++ b/c-api/group__prim__char_ga5816cdad5bf63f639cc51630e6ed4f14.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_char_lte_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__char_ga5e847142d4fc7f655a99405a1a18a204.html b/c-api/group__prim__char_ga5e847142d4fc7f655a99405a1a18a204.html
index 3219743e..a1586473 100644
--- a/c-api/group__prim__char_ga5e847142d4fc7f655a99405a1a18a204.html
+++ b/c-api/group__prim__char_ga5e847142d4fc7f655a99405a1a18a204.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_char_eq_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__char_gac17c2b9734599574551791009b687527.html b/c-api/group__prim__char_gac17c2b9734599574551791009b687527.html
index 0f32b0b4..2ca33fc1 100644
--- a/c-api/group__prim__char_gac17c2b9734599574551791009b687527.html
+++ b/c-api/group__prim__char_gac17c2b9734599574551791009b687527.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_char_gt_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__ctrl.html b/c-api/group__prim__ctrl.html
index ca8ae61d..90d4b0da 100644
--- a/c-api/group__prim__ctrl.html
+++ b/c-api/group__prim__ctrl.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Control flow
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -76,16 +79,12 @@ Functions
object apply_va (void *data, object cont, int argc, object func,...)
-void Cyc_apply (void *data, int argc, closure cont, object prim ,...)
-
-void dispatch (void *data, int argc, function_type func, object clo, object cont, object args)
+void Cyc_apply (void *data, object cont, int argc, object *args)
+
+void dispatch (void *data, int argc, function_type func, object clo, object cont, object args)
-void dispatch_apply_va (void *data, int argc, object clo, object cont, object func,...)
-
-void dispatch_va (void *data, int argc, function_type_va func, object clo, object cont, object args)
-
-void do_dispatch (void *data, int argc, function_type func, object clo, object *buffer)
-
+void dispatch_apply_va (void *data, object clo, int argc, object *args)
+
Primitives that control the flow of program execution.
@@ -94,7 +93,7 @@ Functions
diff --git a/c-api/group__prim__ctrl_ga0659d97ce0f867240e303bc030c6d969.html b/c-api/group__prim__ctrl_ga0659d97ce0f867240e303bc030c6d969.html
index 1c9d4142..e5bed2c7 100644
--- a/c-api/group__prim__ctrl_ga0659d97ce0f867240e303bc030c6d969.html
+++ b/c-api/group__prim__ctrl_ga0659d97ce0f867240e303bc030c6d969.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: apply
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -128,7 +129,7 @@ $(function() {
diff --git a/c-api/group__prim__ctrl_ga32163c51b4b14706ee2806ddb5bff29d.html b/c-api/group__prim__ctrl_ga32163c51b4b14706ee2806ddb5bff29d.html
index 4c242bdd..51988a2a 100644
--- a/c-api/group__prim__ctrl_ga32163c51b4b14706ee2806ddb5bff29d.html
+++ b/c-api/group__prim__ctrl_ga32163c51b4b14706ee2806ddb5bff29d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: dispatch
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -101,7 +102,7 @@ $(function() {
- function_type
+ function_type
func ,
@@ -141,7 +142,7 @@ $(function() {
diff --git a/c-api/group__prim__ctrl_ga64d451594e96c52867825a4eb83c7bfd.html b/c-api/group__prim__ctrl_ga64d451594e96c52867825a4eb83c7bfd.html
index 96199a12..42445a96 100644
--- a/c-api/group__prim__ctrl_ga64d451594e96c52867825a4eb83c7bfd.html
+++ b/c-api/group__prim__ctrl_ga64d451594e96c52867825a4eb83c7bfd.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: apply_va
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -134,7 +135,7 @@ $(function() {
diff --git a/c-api/group__prim__ctrl_ga946669db9d6596ddc4785d07d7501919.html b/c-api/group__prim__ctrl_ga946669db9d6596ddc4785d07d7501919.html
new file mode 100644
index 00000000..41b066a4
--- /dev/null
+++ b/c-api/group__prim__ctrl_ga946669db9d6596ddc4785d07d7501919.html
@@ -0,0 +1,135 @@
+
+
+
+
+
+
+
+Cyclone Scheme: dispatch_apply_va
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ dispatch_apply_va()
+
+
+
+
+
+ void dispatch_apply_va
+ (
+ void *
+ data ,
+
+
+
+
+ object
+ clo ,
+
+
+
+
+ int
+ argc ,
+
+
+
+
+ object *
+ args
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/group__prim__ctrl_gafe7a2f4b6715c22a3fcb03b449e13e2a.html b/c-api/group__prim__ctrl_gafe7a2f4b6715c22a3fcb03b449e13e2a.html
new file mode 100644
index 00000000..79ab6623
--- /dev/null
+++ b/c-api/group__prim__ctrl_gafe7a2f4b6715c22a3fcb03b449e13e2a.html
@@ -0,0 +1,135 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Cyc_apply
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ Cyc_apply()
+
+
+
+
+
+ void Cyc_apply
+ (
+ void *
+ data ,
+
+
+
+
+ object
+ cont ,
+
+
+
+
+ int
+ argc ,
+
+
+
+
+ object *
+ args
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/group__prim__cvar.html b/c-api/group__prim__cvar.html
index a7a005eb..b7aec3ea 100644
--- a/c-api/group__prim__cvar.html
+++ b/c-api/group__prim__cvar.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: C vars
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -94,7 +97,7 @@ Variables
diff --git a/c-api/group__prim__cvar_ga0fb772b7f58b6144ef09bf1cfdfa863c.html b/c-api/group__prim__cvar_ga0fb772b7f58b6144ef09bf1cfdfa863c.html
index ef23da30..ddfb2b0b 100644
--- a/c-api/group__prim__cvar_ga0fb772b7f58b6144ef09bf1cfdfa863c.html
+++ b/c-api/group__prim__cvar_ga0fb772b7f58b6144ef09bf1cfdfa863c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_get_cvar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__cvar_ga529e2bc36904c0be536960bf14958a7e.html b/c-api/group__prim__cvar_ga529e2bc36904c0be536960bf14958a7e.html
index abdc6cb2..ca1d5224 100644
--- a/c-api/group__prim__cvar_ga529e2bc36904c0be536960bf14958a7e.html
+++ b/c-api/group__prim__cvar_ga529e2bc36904c0be536960bf14958a7e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: mcvar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__cvar_ga826addbe898ee319d120eff47ae61aa2.html b/c-api/group__prim__cvar_ga826addbe898ee319d120eff47ae61aa2.html
index b52d5751..d543910b 100644
--- a/c-api/group__prim__cvar_ga826addbe898ee319d120eff47ae61aa2.html
+++ b/c-api/group__prim__cvar_ga826addbe898ee319d120eff47ae61aa2.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_set_cvar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__cvar_gaaef7e6f90c6dc481a2f2791846597ef9.html b/c-api/group__prim__cvar_gaaef7e6f90c6dc481a2f2791846597ef9.html
index 1847e082..ba47a0d0 100644
--- a/c-api/group__prim__cvar_gaaef7e6f90c6dc481a2f2791846597ef9.html
+++ b/c-api/group__prim__cvar_gaaef7e6f90c6dc481a2f2791846597ef9.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_global_variables
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__cvar_gacb23e5380b5b4e30319465057b424074.html b/c-api/group__prim__cvar_gacb23e5380b5b4e30319465057b424074.html
index 4063dc47..9a603508 100644
--- a/c-api/group__prim__cvar_gacb23e5380b5b4e30319465057b424074.html
+++ b/c-api/group__prim__cvar_gacb23e5380b5b4e30319465057b424074.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_get_global_variables
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__eq.html b/c-api/group__prim__eq.html
index 2fed34b5..468c3d0c 100644
--- a/c-api/group__prim__eq.html
+++ b/c-api/group__prim__eq.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Equality and type predicates
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -88,6 +91,8 @@ Macros
#define Cyc_is_cvar (o) (make_boolean (is_object_type (o) && ((list ) o)->tag == cvar_tag ))
+#define Cyc_is_double (o) (make_boolean (is_object_type (o) && ((list ) o)->tag == double_tag ))
+
#define Cyc_is_eof_object (o) (make_boolean (is_object_type (o) && ((list ) o)->tag == eof_tag ))
#define Cyc_is_fixnum (o) (make_boolean (obj_is_int (o)))
@@ -108,8 +113,10 @@ Macros
#define Cyc_is_symbol (o) (make_boolean (is_object_type (o) && ((list ) o)->tag == symbol_tag ))
-#define Cyc_is_vector (o) (make_boolean (is_object_type (o) && ((list ) o)->tag == vector_tag ))
+#define Cyc_is_vector (o) (make_boolean (is_object_type (o) && ((vector ) o)->tag == vector_tag ))
+#define Cyc_is_vector_not_record_type (o)
+
#define Cyc_is_void_object (o) (make_boolean (is_object_type (o) && ((list ) o)->tag == void_tag ))
+@ vector_tag
Definition: types.h:69
+#define make_boolean(x)
Definition: types.h:779
+Vector type.
Definition: types.h:1170
+const object Cyc_RECORD_MARKER
Definition: runtime.c:202
+
diff --git a/c-api/group__prim__eq_ga1160f61a224383fc6b450ed39688cc5f.html b/c-api/group__prim__eq_ga1160f61a224383fc6b450ed39688cc5f.html
index 54af5909..07d4bcc8 100644
--- a/c-api/group__prim__eq_ga1160f61a224383fc6b450ed39688cc5f.html
+++ b/c-api/group__prim__eq_ga1160f61a224383fc6b450ed39688cc5f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_char
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga1b9fdacfdafb1742587a7adce6327839.html b/c-api/group__prim__eq_ga1b9fdacfdafb1742587a7adce6327839.html
index 7842c8d2..9fea0141 100644
--- a/c-api/group__prim__eq_ga1b9fdacfdafb1742587a7adce6327839.html
+++ b/c-api/group__prim__eq_ga1b9fdacfdafb1742587a7adce6327839.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_eq
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -140,7 +146,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga2664c915792ef3189847b161b3341314.html b/c-api/group__prim__eq_ga2664c915792ef3189847b161b3341314.html
new file mode 100644
index 00000000..d34887aa
--- /dev/null
+++ b/c-api/group__prim__eq_ga2664c915792ef3189847b161b3341314.html
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+
Cyclone Scheme: Cyc_is_double
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ Cyc_is_double
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/group__prim__eq_ga28d73d0fe3296a65a8954e8c7f275dc7.html b/c-api/group__prim__eq_ga28d73d0fe3296a65a8954e8c7f275dc7.html
index ecc89811..b233fe6e 100644
--- a/c-api/group__prim__eq_ga28d73d0fe3296a65a8954e8c7f275dc7.html
+++ b/c-api/group__prim__eq_ga28d73d0fe3296a65a8954e8c7f275dc7.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_boolean
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga2eb942ba6ea196bbc80d0aeae8df2d95.html b/c-api/group__prim__eq_ga2eb942ba6ea196bbc80d0aeae8df2d95.html
index d86968eb..54fb3352 100644
--- a/c-api/group__prim__eq_ga2eb942ba6ea196bbc80d0aeae8df2d95.html
+++ b/c-api/group__prim__eq_ga2eb942ba6ea196bbc80d0aeae8df2d95.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_number
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga2f7634a215742e4772844ab261dd8492.html b/c-api/group__prim__eq_ga2f7634a215742e4772844ab261dd8492.html
index 67f5084b..fccbd724 100644
--- a/c-api/group__prim__eq_ga2f7634a215742e4772844ab261dd8492.html
+++ b/c-api/group__prim__eq_ga2f7634a215742e4772844ab261dd8492.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_bytevector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga2faf5cecce727fcf88226db7e661a968.html b/c-api/group__prim__eq_ga2faf5cecce727fcf88226db7e661a968.html
index 0118b55f..ed023f60 100644
--- a/c-api/group__prim__eq_ga2faf5cecce727fcf88226db7e661a968.html
+++ b/c-api/group__prim__eq_ga2faf5cecce727fcf88226db7e661a968.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_has_cycle
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga3a5fe484b0eb5c9fdd286c8959d72483.html b/c-api/group__prim__eq_ga3a5fe484b0eb5c9fdd286c8959d72483.html
index f8b4bd9d..a1a69003 100644
--- a/c-api/group__prim__eq_ga3a5fe484b0eb5c9fdd286c8959d72483.html
+++ b/c-api/group__prim__eq_ga3a5fe484b0eb5c9fdd286c8959d72483.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: equal
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -140,7 +146,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga45d1afe2a2015f5375f88ccfb6c8a75c.html b/c-api/group__prim__eq_ga45d1afe2a2015f5375f88ccfb6c8a75c.html
index aebad209..f51ce606 100644
--- a/c-api/group__prim__eq_ga45d1afe2a2015f5375f88ccfb6c8a75c.html
+++ b/c-api/group__prim__eq_ga45d1afe2a2015f5375f88ccfb6c8a75c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_eqv
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -140,7 +146,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga46913ee79f0163d2c91c673df5f22f36.html b/c-api/group__prim__eq_ga46913ee79f0163d2c91c673df5f22f36.html
index e4a5dd5c..18f9401c 100644
--- a/c-api/group__prim__eq_ga46913ee79f0163d2c91c673df5f22f36.html
+++ b/c-api/group__prim__eq_ga46913ee79f0163d2c91c673df5f22f36.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_complex
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga49efcf19dfba8903b29382079e2c872a.html b/c-api/group__prim__eq_ga49efcf19dfba8903b29382079e2c872a.html
new file mode 100644
index 00000000..b5db6ee3
--- /dev/null
+++ b/c-api/group__prim__eq_ga49efcf19dfba8903b29382079e2c872a.html
@@ -0,0 +1,152 @@
+
+
+
+
+
+
+
+
Cyclone Scheme: Cyc_is_vector_not_record_type
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ Cyc_is_vector_not_record_type
+
+
+
+
+
+ #define Cyc_is_vector_not_record_type
+ (
+
+ o )
+
+
+
+
+
Value:
+
+
( ((
vector ) o)->num_elements == 0 || \
+
+
))
+
+
+
+
+
+
+
+
@ vector_tag
Definition: types.h:69
+
#define make_boolean(x)
Definition: types.h:779
+
Vector type.
Definition: types.h:1170
+
const object Cyc_RECORD_MARKER
Definition: runtime.c:202
+
+
+
+
+
diff --git a/c-api/group__prim__eq_ga503024e65319e203a1e29e8dbd9b9f01.html b/c-api/group__prim__eq_ga503024e65319e203a1e29e8dbd9b9f01.html
index 04317a76..0df1e977 100644
--- a/c-api/group__prim__eq_ga503024e65319e203a1e29e8dbd9b9f01.html
+++ b/c-api/group__prim__eq_ga503024e65319e203a1e29e8dbd9b9f01.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_null
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga548c78ba52ef8c7a8d4a41be61403677.html b/c-api/group__prim__eq_ga548c78ba52ef8c7a8d4a41be61403677.html
index 14209002..1b1da8ba 100644
--- a/c-api/group__prim__eq_ga548c78ba52ef8c7a8d4a41be61403677.html
+++ b/c-api/group__prim__eq_ga548c78ba52ef8c7a8d4a41be61403677.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_pair
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga557238703529a7e2f8a2e5862000f416.html b/c-api/group__prim__eq_ga557238703529a7e2f8a2e5862000f416.html
new file mode 100644
index 00000000..8dfefdd7
--- /dev/null
+++ b/c-api/group__prim__eq_ga557238703529a7e2f8a2e5862000f416.html
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+
Cyclone Scheme: Cyc_is_record
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ Cyc_is_record()
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/group__prim__eq_ga5b12e043ee4e462bbd66e65874610490.html b/c-api/group__prim__eq_ga5b12e043ee4e462bbd66e65874610490.html
index d1371814..0d74083b 100644
--- a/c-api/group__prim__eq_ga5b12e043ee4e462bbd66e65874610490.html
+++ b/c-api/group__prim__eq_ga5b12e043ee4e462bbd66e65874610490.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_void_object
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga692118ea2f88dd5c77cff657cb966dd9.html b/c-api/group__prim__eq_ga692118ea2f88dd5c77cff657cb966dd9.html
index 9387105a..89bbcdae 100644
--- a/c-api/group__prim__eq_ga692118ea2f88dd5c77cff657cb966dd9.html
+++ b/c-api/group__prim__eq_ga692118ea2f88dd5c77cff657cb966dd9.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_fixnum
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga6c578e59d4d534a07e1b0358fa142d7d.html b/c-api/group__prim__eq_ga6c578e59d4d534a07e1b0358fa142d7d.html
index 613e663d..b6f15533 100644
--- a/c-api/group__prim__eq_ga6c578e59d4d534a07e1b0358fa142d7d.html
+++ b/c-api/group__prim__eq_ga6c578e59d4d534a07e1b0358fa142d7d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_symbol
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga7440217f3acbd84058be20b028d4f8ca.html b/c-api/group__prim__eq_ga7440217f3acbd84058be20b028d4f8ca.html
index 546c7fa0..bd5d5b68 100644
--- a/c-api/group__prim__eq_ga7440217f3acbd84058be20b028d4f8ca.html
+++ b/c-api/group__prim__eq_ga7440217f3acbd84058be20b028d4f8ca.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: equalp
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -141,7 +147,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga7524052178f904b4cacce0170e7a6f41.html b/c-api/group__prim__eq_ga7524052178f904b4cacce0170e7a6f41.html
index af293746..2cf10f14 100644
--- a/c-api/group__prim__eq_ga7524052178f904b4cacce0170e7a6f41.html
+++ b/c-api/group__prim__eq_ga7524052178f904b4cacce0170e7a6f41.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_atomic
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga7640ec8c3ad74633825532faeb92aeee.html b/c-api/group__prim__eq_ga7640ec8c3ad74633825532faeb92aeee.html
index ba914ab7..e6c3e9e8 100644
--- a/c-api/group__prim__eq_ga7640ec8c3ad74633825532faeb92aeee.html
+++ b/c-api/group__prim__eq_ga7640ec8c3ad74633825532faeb92aeee.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_macro
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga8be74dd5fea59aa72c3177d9fe367572.html b/c-api/group__prim__eq_ga8be74dd5fea59aa72c3177d9fe367572.html
index cc0297f5..c27ff6b0 100644
--- a/c-api/group__prim__eq_ga8be74dd5fea59aa72c3177d9fe367572.html
+++ b/c-api/group__prim__eq_ga8be74dd5fea59aa72c3177d9fe367572.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_cvar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga90bc60e6f302248bef0a624e39765772.html b/c-api/group__prim__eq_ga90bc60e6f302248bef0a624e39765772.html
index cd44de40..977e1e8d 100644
--- a/c-api/group__prim__eq_ga90bc60e6f302248bef0a624e39765772.html
+++ b/c-api/group__prim__eq_ga90bc60e6f302248bef0a624e39765772.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_immutable
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga9245b6bce648de36ec0a1d0e1dec1ef3.html b/c-api/group__prim__eq_ga9245b6bce648de36ec0a1d0e1dec1ef3.html
index 0e05d2c8..8f3183eb 100644
--- a/c-api/group__prim__eq_ga9245b6bce648de36ec0a1d0e1dec1ef3.html
+++ b/c-api/group__prim__eq_ga9245b6bce648de36ec0a1d0e1dec1ef3.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_list
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -131,7 +137,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga945b003c9802c787fa2abc13b53ddf47.html b/c-api/group__prim__eq_ga945b003c9802c787fa2abc13b53ddf47.html
index 7f85e772..e8016bdc 100644
--- a/c-api/group__prim__eq_ga945b003c9802c787fa2abc13b53ddf47.html
+++ b/c-api/group__prim__eq_ga945b003c9802c787fa2abc13b53ddf47.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_procedure
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -140,7 +146,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga9d395df6517eaf2dcad40f1cc8c76560.html b/c-api/group__prim__eq_ga9d395df6517eaf2dcad40f1cc8c76560.html
index 97419fc6..23253126 100644
--- a/c-api/group__prim__eq_ga9d395df6517eaf2dcad40f1cc8c76560.html
+++ b/c-api/group__prim__eq_ga9d395df6517eaf2dcad40f1cc8c76560.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_port
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_ga9e6b5998fc172b2ffef1f00ef25a0e85.html b/c-api/group__prim__eq_ga9e6b5998fc172b2ffef1f00ef25a0e85.html
index d43be769..50702202 100644
--- a/c-api/group__prim__eq_ga9e6b5998fc172b2ffef1f00ef25a0e85.html
+++ b/c-api/group__prim__eq_ga9e6b5998fc172b2ffef1f00ef25a0e85.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_vector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_gab4e142d9724ba811f61a99fb7ce740df.html b/c-api/group__prim__eq_gab4e142d9724ba811f61a99fb7ce740df.html
index 41a1cea0..68a11c88 100644
--- a/c-api/group__prim__eq_gab4e142d9724ba811f61a99fb7ce740df.html
+++ b/c-api/group__prim__eq_gab4e142d9724ba811f61a99fb7ce740df.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_mutex
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_gab590e96b4ea70bcf134fd3b4d3792822.html b/c-api/group__prim__eq_gab590e96b4ea70bcf134fd3b4d3792822.html
index 86398250..29a511b7 100644
--- a/c-api/group__prim__eq_gab590e96b4ea70bcf134fd3b4d3792822.html
+++ b/c-api/group__prim__eq_gab590e96b4ea70bcf134fd3b4d3792822.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_string
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_gabb87124308c5750f908776c2ffe8ceb5.html b/c-api/group__prim__eq_gabb87124308c5750f908776c2ffe8ceb5.html
index 7a10fd31..80073ceb 100644
--- a/c-api/group__prim__eq_gabb87124308c5750f908776c2ffe8ceb5.html
+++ b/c-api/group__prim__eq_gabb87124308c5750f908776c2ffe8ceb5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_eof_object
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_gad35a1eb87d033af234a659caaa320380.html b/c-api/group__prim__eq_gad35a1eb87d033af234a659caaa320380.html
index be549aae..0ea906e9 100644
--- a/c-api/group__prim__eq_gad35a1eb87d033af234a659caaa320380.html
+++ b/c-api/group__prim__eq_gad35a1eb87d033af234a659caaa320380.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_cond_var
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_gad36cae3ae9c21abaca7a548cb44959db.html b/c-api/group__prim__eq_gad36cae3ae9c21abaca7a548cb44959db.html
index 3df9c852..26e35dcb 100644
--- a/c-api/group__prim__eq_gad36cae3ae9c21abaca7a548cb44959db.html
+++ b/c-api/group__prim__eq_gad36cae3ae9c21abaca7a548cb44959db.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_opaque
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_gaeae51bae898e4e2dc529bdfbcca5c1cd.html b/c-api/group__prim__eq_gaeae51bae898e4e2dc529bdfbcca5c1cd.html
index 0fe2497b..a42ff083 100644
--- a/c-api/group__prim__eq_gaeae51bae898e4e2dc529bdfbcca5c1cd.html
+++ b/c-api/group__prim__eq_gaeae51bae898e4e2dc529bdfbcca5c1cd.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_integer
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_gaf5bd710f7c6c9a740f4f6da6027a1bc4.html b/c-api/group__prim__eq_gaf5bd710f7c6c9a740f4f6da6027a1bc4.html
index 821c9b32..6da87f10 100644
--- a/c-api/group__prim__eq_gaf5bd710f7c6c9a740f4f6da6027a1bc4.html
+++ b/c-api/group__prim__eq_gaf5bd710f7c6c9a740f4f6da6027a1bc4.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_bignum
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__eq_gafd7d500bc01b6f688c9f92b735422104.html b/c-api/group__prim__eq_gafd7d500bc01b6f688c9f92b735422104.html
index fc585a52..d64fecaf 100644
--- a/c-api/group__prim__eq_gafd7d500bc01b6f688c9f92b735422104.html
+++ b/c-api/group__prim__eq_gafd7d500bc01b6f688c9f92b735422104.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_is_real
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_is_complex
Cyc_is_cond_var
Cyc_is_cvar
+
Cyc_is_double
Cyc_is_eof_object
Cyc_is_fixnum
Cyc_is_immutable
@@ -94,9 +98,11 @@ $(function() {
Cyc_is_port
Cyc_is_procedure
Cyc_is_real
+
Cyc_is_record
Cyc_is_string
Cyc_is_symbol
Cyc_is_vector
+
Cyc_is_vector_not_record_type
Cyc_is_void_object
equal
equalp
@@ -130,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__err.html b/c-api/group__prim__err.html
index 5e7d3ee7..cc6a3147 100644
--- a/c-api/group__prim__err.html
+++ b/c-api/group__prim__err.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Error checking
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -73,12 +76,16 @@ $(function() {
+#define Cyc_check_argc (data, fnc_name, argc, expected)
+
#define Cyc_check_atomic (d, obj) Cyc_check_type (d,Cyc_is_atomic , atomic_tag , obj)
#define Cyc_check_bvec (d, obj) Cyc_check_type (d,Cyc_is_bytevector , bytevector_tag , obj)
#define Cyc_check_cond_var (d, obj) Cyc_check_type (d,Cyc_is_cond_var , cond_var_tag , obj)
+#define Cyc_check_double (d, obj) Cyc_check_type (d,Cyc_is_double , double_tag , obj)
+
#define Cyc_check_fixnum (d, obj) Cyc_check_type (d,Cyc_is_fixnum , integer_tag , obj)
#define Cyc_check_int (d, obj) Cyc_check_type (d,Cyc_is_integer , integer_tag , obj)
@@ -130,11 +137,19 @@ Functions
Runtime error checks including object type validation, bounds, and number of function arguments.
+void Cyc_immutable_obj_error(void *data, object obj)
Definition: runtime.c:69
+
+#define immutable(x)
Definition: types.h:280
+object Cyc_length(void *d, object l)
Definition: runtime.c:2217
+void Cyc_mutable_obj_error(void *data, object obj)
Definition: runtime.c:74
+object Cyc_is_immutable(object obj)
Definition: runtime.c:1975
+void Cyc_invalid_type_error(void *data, int tag, object found)
Definition: runtime.c:57
+const object boolean_f
Definition: runtime.c:397
diff --git a/c-api/group__prim__err_ga099dcb668802d7bece1e4cdde826121d.html b/c-api/group__prim__err_ga099dcb668802d7bece1e4cdde826121d.html
index 08e22963..2340af2b 100644
--- a/c-api/group__prim__err_ga099dcb668802d7bece1e4cdde826121d.html
+++ b/c-api/group__prim__err_ga099dcb668802d7bece1e4cdde826121d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_check_num_args
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: { \
char buf[128]; \
snprintf(buf, 127, "Expected %d arguments to %s but received %ld" , \
Cyc_rt_raise_msg(data, buf); \
} \
}
object Cyc_length(void *d, object l)
Definition: runtime.c:2286
-
+
Value: { \
+
+
+
char buf[128]; \
+
snprintf(buf, 127, "Expected %d arguments to %s but received %ld" , \
+
+
Cyc_rt_raise_msg(data, buf); \
+
} \
+
}
@@ -144,11 +156,13 @@ $(function() {
+
+object Cyc_length(void *d, object l)
Definition: runtime.c:2217
diff --git a/c-api/group__prim__err_ga09de2a07c93e98fe25b3cc1c3f32652c.html b/c-api/group__prim__err_ga09de2a07c93e98fe25b3cc1c3f32652c.html
index 81e59c03..5f86639f 100644
--- a/c-api/group__prim__err_ga09de2a07c93e98fe25b3cc1c3f32652c.html
+++ b/c-api/group__prim__err_ga09de2a07c93e98fe25b3cc1c3f32652c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_check_proc
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
+
Type Checking - raise an error unless the object is a procedure
Parameters
+
+ d - Thread data object
+ obj - Object to check
+
+
+
@@ -134,7 +146,7 @@ $(function() {
diff --git a/c-api/group__prim__err_ga0a4488a615cf0343c01d6ae27414b115.html b/c-api/group__prim__err_ga0a4488a615cf0343c01d6ae27414b115.html
index 80d091a0..ab40a53f 100644
--- a/c-api/group__prim__err_ga0a4488a615cf0343c01d6ae27414b115.html
+++ b/c-api/group__prim__err_ga0a4488a615cf0343c01d6ae27414b115.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_check_pair_or_null
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
+
Type Checking - raise an error unless obj
is a pair object or NULL
Parameters
+
+ d - Thread data object
+ obj - Object to check
+
+
+
@@ -134,7 +146,7 @@ $(function() {
diff --git a/c-api/group__prim__err_ga115f2cec0c572c3e437861076e6de3cb.html b/c-api/group__prim__err_ga115f2cec0c572c3e437861076e6de3cb.html
index d4b36fc0..db8de8c9 100644
--- a/c-api/group__prim__err_ga115f2cec0c572c3e437861076e6de3cb.html
+++ b/c-api/group__prim__err_ga115f2cec0c572c3e437861076e6de3cb.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_check_opaque
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
+
Type Checking - raise an error unless the object is an opaque
Parameters
+
+ d - Thread data object
+ obj - Object to check
+
+
+
@@ -134,7 +146,7 @@ $(function() {
diff --git a/c-api/group__prim__err_ga22d6564b8ba489cb4720f17d80dba689.html b/c-api/group__prim__err_ga22d6564b8ba489cb4720f17d80dba689.html
new file mode 100644
index 00000000..3204a742
--- /dev/null
+++ b/c-api/group__prim__err_ga22d6564b8ba489cb4720f17d80dba689.html
@@ -0,0 +1,165 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Cyc_check_argc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ Cyc_check_argc
+
+
+
+
+
+ #define Cyc_check_argc
+ (
+
+ data,
+
+
+
+
+
+ fnc_name,
+
+
+
+
+
+ argc,
+
+
+
+
+
+ expected
+
+
+
+ )
+
+
+
+
+
Value: { \
+
if (expected > argc) { \
+
char buf[128]; \
+
snprintf(buf, 127, "Expected %d arguments to %s but received %ld" , \
+
expected, fnc_name, argc); \
+
Cyc_rt_raise_msg(data, buf); \
+
} \
+
}
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/group__prim__err_ga2426798bc21b9dc55ac9e2f96144afb5.html b/c-api/group__prim__err_ga2426798bc21b9dc55ac9e2f96144afb5.html
index 9db272d0..65782b95 100644
--- a/c-api/group__prim__err_ga2426798bc21b9dc55ac9e2f96144afb5.html
+++ b/c-api/group__prim__err_ga2426798bc21b9dc55ac9e2f96144afb5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_check_port
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
+
Type Checking - raise an error unless the object is a port
Parameters
+
+ d - Thread data object
+ obj - Object to check
+
+
+
@@ -134,7 +146,7 @@ $(function() {
diff --git a/c-api/group__prim__err_ga27c4b703026e10f960d96b586db4419c.html b/c-api/group__prim__err_ga27c4b703026e10f960d96b586db4419c.html
index 6bd96388..ab783e29 100644
--- a/c-api/group__prim__err_ga27c4b703026e10f960d96b586db4419c.html
+++ b/c-api/group__prim__err_ga27c4b703026e10f960d96b586db4419c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_check_int
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
+
Type Checking - raise an error unless the object is an integer
Parameters
+
+ d - Thread data object
+ obj - Object to check
+
+
+
@@ -134,7 +146,7 @@ $(function() {
diff --git a/c-api/group__prim__err_ga2e6927f223a2bc6802c66114d42aee2f.html b/c-api/group__prim__err_ga2e6927f223a2bc6802c66114d42aee2f.html
index 0af34c53..389939dc 100644
--- a/c-api/group__prim__err_ga2e6927f223a2bc6802c66114d42aee2f.html
+++ b/c-api/group__prim__err_ga2e6927f223a2bc6802c66114d42aee2f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_check_type
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: { \
const object boolean_f
Definition: runtime.c:389
-
void Cyc_invalid_type_error(void *data, int tag, object found)
Definition: runtime.c:56
-
+
Value: Perform type checking and raise an error if the check fails.
Parameters
+
+ data - Thread data object
+ fnc_test - Predicate to do type checking
+ tag - Object tag we are checking for
+ obj - Object to check
+
+
+
+
+void Cyc_invalid_type_error(void *data, int tag, object found)
Definition: runtime.c:57
+const object boolean_f
Definition: runtime.c:397
diff --git a/c-api/group__prim__err_ga3083fba500bcb4a2dcccb60960933625.html b/c-api/group__prim__err_ga3083fba500bcb4a2dcccb60960933625.html
index a8301d12..a5ccfbf5 100644
--- a/c-api/group__prim__err_ga3083fba500bcb4a2dcccb60960933625.html
+++ b/c-api/group__prim__err_ga3083fba500bcb4a2dcccb60960933625.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_invalid_type_error
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
+
+/* @license-end */
+
Type Checking - raise an error unless the object is a number
Parameters
+
+ d - Thread data object
+ obj - Object to check
+
+
+
@@ -134,7 +146,7 @@ $(function() {
diff --git a/c-api/group__prim__err_ga373955e8df3b539eff1a8eb3c832462f.html b/c-api/group__prim__err_ga373955e8df3b539eff1a8eb3c832462f.html
index a41a92be..22849366 100644
--- a/c-api/group__prim__err_ga373955e8df3b539eff1a8eb3c832462f.html
+++ b/c-api/group__prim__err_ga373955e8df3b539eff1a8eb3c832462f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_check_bounds
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
+
+/* @license-end */
-
+
+/* @license-end */
+
Type Checking - raise an error unless the object is a pair
Parameters
+
+ d - Thread data object
+ obj - Object to check
+
+
+
@@ -134,7 +146,7 @@ $(function() {
diff --git a/c-api/group__prim__err_ga6fccd1290ad5189ca7dae993a652def9.html b/c-api/group__prim__err_ga6fccd1290ad5189ca7dae993a652def9.html
index 50e3fdc6..54f367bb 100644
--- a/c-api/group__prim__err_ga6fccd1290ad5189ca7dae993a652def9.html
+++ b/c-api/group__prim__err_ga6fccd1290ad5189ca7dae993a652def9.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_check_mutex
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
+
Type Checking - raise an error unless the object is a mutex
Parameters
+
+ d - Thread data object
+ obj - Object to check
+
+
+
@@ -134,7 +146,7 @@ $(function() {
diff --git a/c-api/group__prim__err_ga78d18bb6bd95237f3d053f336a0e7bef.html b/c-api/group__prim__err_ga78d18bb6bd95237f3d053f336a0e7bef.html
index 6b1fd4f9..31a7701d 100644
--- a/c-api/group__prim__err_ga78d18bb6bd95237f3d053f336a0e7bef.html
+++ b/c-api/group__prim__err_ga78d18bb6bd95237f3d053f336a0e7bef.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_check_sym
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
+
Type Checking - raise an error unless the object is a symbol
Parameters
+
+ d - Thread data object
+ obj - Object to check
+
+
+
@@ -134,7 +146,7 @@ $(function() {
diff --git a/c-api/group__prim__err_ga7d45853ee5951b3c2a62d0b937fb7bce.html b/c-api/group__prim__err_ga7d45853ee5951b3c2a62d0b937fb7bce.html
index f903de12..6861f7f4 100644
--- a/c-api/group__prim__err_ga7d45853ee5951b3c2a62d0b937fb7bce.html
+++ b/c-api/group__prim__err_ga7d45853ee5951b3c2a62d0b937fb7bce.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_check_fixnum
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
+
Type Checking - raise an error unless the object is an immediate integer
Parameters
+
+ d - Thread data object
+ obj - Object to check
+
+
+
@@ -134,7 +146,7 @@ $(function() {
diff --git a/c-api/group__prim__err_ga82860cb9470cf2ae6ef23bdab909b44f.html b/c-api/group__prim__err_ga82860cb9470cf2ae6ef23bdab909b44f.html
index fae14616..8ba32c3c 100644
--- a/c-api/group__prim__err_ga82860cb9470cf2ae6ef23bdab909b44f.html
+++ b/c-api/group__prim__err_ga82860cb9470cf2ae6ef23bdab909b44f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_verify_immutable
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: { \
object Cyc_is_immutable(object obj)
Definition: runtime.c:2056
-
void Cyc_mutable_obj_error(void *data, object obj)
Definition: runtime.c:73
-
const object boolean_f
Definition: runtime.c:389
-
+
Value: Raise an error if obj is mutable
Parameters
+
+ data - Thread data object
+ obj - Object to check
+
+
+
+
+void Cyc_mutable_obj_error(void *data, object obj)
Definition: runtime.c:74
+object Cyc_is_immutable(object obj)
Definition: runtime.c:1975
+const object boolean_f
Definition: runtime.c:397
diff --git a/c-api/group__prim__err_ga86d6406f98bd4ef2c78114ecdb6f7fe1.html b/c-api/group__prim__err_ga86d6406f98bd4ef2c78114ecdb6f7fe1.html
index b7af7c0b..c8e7c039 100644
--- a/c-api/group__prim__err_ga86d6406f98bd4ef2c78114ecdb6f7fe1.html
+++ b/c-api/group__prim__err_ga86d6406f98bd4ef2c78114ecdb6f7fe1.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_check_obj
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
+
+/* @license-end */
+
Type Checking - raise an error unless the object is a vector
Parameters
+
+ d - Thread data object
+ obj - Object to check
+
+
+
@@ -134,7 +146,7 @@ $(function() {
diff --git a/c-api/group__prim__err_gaa2354df89425b979e4932a3b466d72e0.html b/c-api/group__prim__err_gaa2354df89425b979e4932a3b466d72e0.html
index ab83beff..ce025224 100644
--- a/c-api/group__prim__err_gaa2354df89425b979e4932a3b466d72e0.html
+++ b/c-api/group__prim__err_gaa2354df89425b979e4932a3b466d72e0.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_check_type2
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: { \
const object boolean_f
Definition: runtime.c:389
-
void Cyc_invalid_type_error(void *data, int tag, object found)
Definition: runtime.c:56
+
Value:
@@ -144,11 +149,13 @@ $(function() {
+void Cyc_invalid_type_error(void *data, int tag, object found)
Definition: runtime.c:57
+const object boolean_f
Definition: runtime.c:397
diff --git a/c-api/group__prim__err_gab309848328c7ccf001d8f2fbc94a8ae6.html b/c-api/group__prim__err_gab309848328c7ccf001d8f2fbc94a8ae6.html
new file mode 100644
index 00000000..4bbdc32a
--- /dev/null
+++ b/c-api/group__prim__err_gab309848328c7ccf001d8f2fbc94a8ae6.html
@@ -0,0 +1,152 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Cyc_check_double
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ Cyc_check_double
+
+
+
+
Type Checking - raise an error unless the object is a double precision number
Parameters
+
+ d - Thread data object
+ obj - Object to check
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/group__prim__err_gab9cfd713e9b017fb830bdbb567d056da.html b/c-api/group__prim__err_gab9cfd713e9b017fb830bdbb567d056da.html
index f45971a5..d1a9d469 100644
--- a/c-api/group__prim__err_gab9cfd713e9b017fb830bdbb567d056da.html
+++ b/c-api/group__prim__err_gab9cfd713e9b017fb830bdbb567d056da.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_verify_mutable
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: { \
void Cyc_immutable_obj_error(void *data, object obj)
Definition: runtime.c:68
-
#define immutable(x)
Definition: types.h:279
-
+
Value: Raise an error if obj is immutable
Parameters
+
+ data - Thread data object
+ obj - Object to check
+
+
+
+
+void Cyc_immutable_obj_error(void *data, object obj)
Definition: runtime.c:69
+#define immutable(x)
Definition: types.h:280
diff --git a/c-api/group__prim__err_gae030cabb4cf06aa76828cba8fc723b78.html b/c-api/group__prim__err_gae030cabb4cf06aa76828cba8fc723b78.html
index d1f864f1..cf6beef3 100644
--- a/c-api/group__prim__err_gae030cabb4cf06aa76828cba8fc723b78.html
+++ b/c-api/group__prim__err_gae030cabb4cf06aa76828cba8fc723b78.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_check_str
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
+
Type Checking - raise an error unless the object is a string
Parameters
+
+ d - Thread data object
+ obj - Object to check
+
+
+
@@ -134,7 +146,7 @@ $(function() {
diff --git a/c-api/group__prim__err_gae483f4d223eec0e3b845013d1ecfe1b5.html b/c-api/group__prim__err_gae483f4d223eec0e3b845013d1ecfe1b5.html
index 9ed01bb1..c7b0cb85 100644
--- a/c-api/group__prim__err_gae483f4d223eec0e3b845013d1ecfe1b5.html
+++ b/c-api/group__prim__err_gae483f4d223eec0e3b845013d1ecfe1b5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_check_atomic
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
+
Type Checking - raise an error unless the object is an atomic
Parameters
+
+ d - Thread data object
+ obj - Object to check
+
+
+
@@ -134,7 +146,7 @@ $(function() {
diff --git a/c-api/group__prim__err_gae5f700cd58c32cca27a3d658f52deb4f.html b/c-api/group__prim__err_gae5f700cd58c32cca27a3d658f52deb4f.html
index 91f63189..13c41ccd 100644
--- a/c-api/group__prim__err_gae5f700cd58c32cca27a3d658f52deb4f.html
+++ b/c-api/group__prim__err_gae5f700cd58c32cca27a3d658f52deb4f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_check_cond_var
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
+
Type Checking - raise an error unless the object is a condition variable
Parameters
+
+ d - Thread data object
+ obj - Object to check
+
+
+
@@ -134,7 +146,7 @@ $(function() {
diff --git a/c-api/group__prim__err_gaf1406c080fe766ec64e6db44583d3bd6.html b/c-api/group__prim__err_gaf1406c080fe766ec64e6db44583d3bd6.html
index 510820e7..fecd7d75 100644
--- a/c-api/group__prim__err_gaf1406c080fe766ec64e6db44583d3bd6.html
+++ b/c-api/group__prim__err_gaf1406c080fe766ec64e6db44583d3bd6.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_immutable_obj_error
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
+
+/* @license-end */
+
Type Checking - raise an error unless the object is a bytevector
Parameters
+
+ d - Thread data object
+ obj - Object to check
+
+
+
@@ -134,7 +146,7 @@ $(function() {
diff --git a/c-api/group__prim__ex.html b/c-api/group__prim__ex.html
index 717d4efa..b74be593 100644
--- a/c-api/group__prim__ex.html
+++ b/c-api/group__prim__ex.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Exception handling
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -75,9 +78,9 @@ Functions
object Cyc_current_exception_handler (void *data)
Return the current exception handler. More...
-object Cyc_default_exception_handler (void *data, int argc, closure _, object err)
- The default exception handler. More...
-
+object Cyc_default_exception_handler (void *data, object _, int argc, object *args)
+ The default exception handler. More...
+
void Cyc_rt_raise (void *data, object err)
Raise an exception from the runtime code. More...
@@ -95,7 +98,7 @@ Functions
diff --git a/c-api/group__prim__ex_ga241a32109abd670c45cf2d32de1f3749.html b/c-api/group__prim__ex_ga241a32109abd670c45cf2d32de1f3749.html
index 2f780361..5dffcb43 100644
--- a/c-api/group__prim__ex_ga241a32109abd670c45cf2d32de1f3749.html
+++ b/c-api/group__prim__ex_ga241a32109abd670c45cf2d32de1f3749.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_current_exception_handler
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_current_exception_handler
- Cyc_default_exception_handler
+ Cyc_default_exception_handler
Cyc_rt_raise
Cyc_rt_raise2
Cyc_rt_raise_msg
@@ -113,7 +116,7 @@ $(function() {
diff --git a/c-api/group__prim__ex_ga5af6d822f29dcededb6f922d66baf934.html b/c-api/group__prim__ex_ga5af6d822f29dcededb6f922d66baf934.html
new file mode 100644
index 00000000..851360d7
--- /dev/null
+++ b/c-api/group__prim__ex_ga5af6d822f29dcededb6f922d66baf934.html
@@ -0,0 +1,146 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Cyc_default_exception_handler
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ Cyc_default_exception_handler()
+
+
+
+
+
+ object Cyc_default_exception_handler
+ (
+ void *
+ data ,
+
+
+
+
+ object
+ _ ,
+
+
+
+
+ int
+ argc ,
+
+
+
+
+ object *
+ args
+
+
+
+ )
+
+
+
+
+
+
The default exception handler.
+
Parameters
+
+ data Thread data object
+ _ Unused, just here to maintain calling convention
+ argc Unused, just here to maintain calling convention
+ args Argument buffer, index 0 is object containing data for the error
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/group__prim__ex_ga69fec1851a68ae1da4c3e86b8f03e5f1.html b/c-api/group__prim__ex_ga69fec1851a68ae1da4c3e86b8f03e5f1.html
index 78a98b70..055ea503 100644
--- a/c-api/group__prim__ex_ga69fec1851a68ae1da4c3e86b8f03e5f1.html
+++ b/c-api/group__prim__ex_ga69fec1851a68ae1da4c3e86b8f03e5f1.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_rt_raise2
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
+
+/* @license-end */
-
+
+/* @license-end */
-
+
+/* @license-end */
@@ -86,7 +89,7 @@ Functions
diff --git a/c-api/group__prim__gc_gad596a9a4ff76ba451fc4765cc203847a.html b/c-api/group__prim__gc_gad596a9a4ff76ba451fc4765cc203847a.html
index e709c831..003c09de 100644
--- a/c-api/group__prim__gc_gad596a9a4ff76ba451fc4765cc203847a.html
+++ b/c-api/group__prim__gc_gad596a9a4ff76ba451fc4765cc203847a.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_trigger_minor_gc
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__gc_gaf2a5abbfdbbad41ffc40e099b31918dc.html b/c-api/group__prim__gc_gaf2a5abbfdbbad41ffc40e099b31918dc.html
index 1e01838e..4f8d1e72 100644
--- a/c-api/group__prim__gc_gaf2a5abbfdbbad41ffc40e099b31918dc.html
+++ b/c-api/group__prim__gc_gaf2a5abbfdbbad41ffc40e099b31918dc.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: copy2heap
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__glo.html b/c-api/group__prim__glo.html
index 2c2d754d..1780f470 100644
--- a/c-api/group__prim__glo.html
+++ b/c-api/group__prim__glo.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Library table
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -95,7 +98,7 @@ Variables
diff --git a/c-api/group__prim__glo_ga780ea900101984491fefd4ca89e038b9.html b/c-api/group__prim__glo_ga780ea900101984491fefd4ca89e038b9.html
index 58399b7a..a8d8568a 100644
--- a/c-api/group__prim__glo_ga780ea900101984491fefd4ca89e038b9.html
+++ b/c-api/group__prim__glo_ga780ea900101984491fefd4ca89e038b9.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: is_library_loaded
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__glo_gac52bad1e086d5f0dc519027ea19f32c4.html b/c-api/group__prim__glo_gac52bad1e086d5f0dc519027ea19f32c4.html
index 61cd9804..5c522360 100644
--- a/c-api/group__prim__glo_gac52bad1e086d5f0dc519027ea19f32c4.html
+++ b/c-api/group__prim__glo_gac52bad1e086d5f0dc519027ea19f32c4.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: global_table
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__glo_gaca813fd31c39e0f1163d5453a8ca4ada.html b/c-api/group__prim__glo_gaca813fd31c39e0f1163d5453a8ca4ada.html
index 2b1e8e99..df5dee5e 100644
--- a/c-api/group__prim__glo_gaca813fd31c39e0f1163d5453a8ca4ada.html
+++ b/c-api/group__prim__glo_gaca813fd31c39e0f1163d5453a8ca4ada.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: register_library
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__glo_gacd0e2648cb1183618b7dba0ff7efe520.html b/c-api/group__prim__glo_gacd0e2648cb1183618b7dba0ff7efe520.html
index 099bf49b..f5e1d9e9 100644
--- a/c-api/group__prim__glo_gacd0e2648cb1183618b7dba0ff7efe520.html
+++ b/c-api/group__prim__glo_gacd0e2648cb1183618b7dba0ff7efe520.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: add_global
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__glo_gaef670d2eb2655b517ceb9b5899a1f351.html b/c-api/group__prim__glo_gaef670d2eb2655b517ceb9b5899a1f351.html
index db857dec..0f8a0de4 100644
--- a/c-api/group__prim__glo_gaef670d2eb2655b517ceb9b5899a1f351.html
+++ b/c-api/group__prim__glo_gaef670d2eb2655b517ceb9b5899a1f351.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_set_globals_changed
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__io.html b/c-api/group__prim__io.html
index bdb64569..6644bffc 100644
--- a/c-api/group__prim__io.html
+++ b/c-api/group__prim__io.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: I/O
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -76,8 +79,8 @@ Functions
object Cyc_display_va (void *data, int argc, object x,...)
-object Cyc_display_va_list (void *data, int argc, object x, va_list ap)
-
+object Cyc_display_va_list (void *data, object x, object opts)
+
object Cyc_io_close_input_port (void *data, object port)
object Cyc_io_close_output_port (void *data, object port)
@@ -133,12 +136,12 @@ Functions
object Cyc_write_va (void *data, int argc, object x,...)
-object Cyc_write_va_list (void *data, int argc, object x, va_list ap)
-
-void dispatch_display_va (void *data, int argc, object clo, object cont, object x,...)
-
-void dispatch_write_va (void *data, int argc, object clo, object cont, object x,...)
-
+object Cyc_write_va_list (void *data, object x, object opts)
+
+void dispatch_display_va (void *data, object clo, int argc, object *args)
+
+void dispatch_write_va (void *data, object clo, int argc, object *args)
+
Input/Output functions.
@@ -147,7 +150,7 @@ Functions
diff --git a/c-api/group__prim__io_ga0aa3431c2d5fcc03fdddd321fc5140c9.html b/c-api/group__prim__io_ga0aa3431c2d5fcc03fdddd321fc5140c9.html
index acbb0058..048af0ab 100644
--- a/c-api/group__prim__io_ga0aa3431c2d5fcc03fdddd321fc5140c9.html
+++ b/c-api/group__prim__io_ga0aa3431c2d5fcc03fdddd321fc5140c9.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_io_get_output_bytevector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -148,7 +151,7 @@ $(function() {
diff --git a/c-api/group__prim__io_ga0c647e0aef90cb7e105b2967f26ba958.html b/c-api/group__prim__io_ga0c647e0aef90cb7e105b2967f26ba958.html
index 2082456e..2b3b8725 100644
--- a/c-api/group__prim__io_ga0c647e0aef90cb7e105b2967f26ba958.html
+++ b/c-api/group__prim__io_ga0c647e0aef90cb7e105b2967f26ba958.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_io_close_input_port
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -142,7 +145,7 @@ $(function() {
diff --git a/c-api/group__prim__io_ga16753655619eca5ab93d1735ce0cbd05.html b/c-api/group__prim__io_ga16753655619eca5ab93d1735ce0cbd05.html
index 1ceceed8..c8d10a7c 100644
--- a/c-api/group__prim__io_ga16753655619eca5ab93d1735ce0cbd05.html
+++ b/c-api/group__prim__io_ga16753655619eca5ab93d1735ce0cbd05.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_io_close_output_port
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -142,7 +145,7 @@ $(function() {
diff --git a/c-api/group__prim__io_ga1c8c2fa356eebbef4f26208790ad7898.html b/c-api/group__prim__io_ga1c8c2fa356eebbef4f26208790ad7898.html
index f6f716be..fa4276cd 100644
--- a/c-api/group__prim__io_ga1c8c2fa356eebbef4f26208790ad7898.html
+++ b/c-api/group__prim__io_ga1c8c2fa356eebbef4f26208790ad7898.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_io_open_binary_output_file
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -142,7 +145,7 @@ $(function() {
diff --git a/c-api/group__prim__io_ga1d5d555973e78eb2c2a402b9cbf873d6.html b/c-api/group__prim__io_ga1d5d555973e78eb2c2a402b9cbf873d6.html
new file mode 100644
index 00000000..204d0fbd
--- /dev/null
+++ b/c-api/group__prim__io_ga1d5d555973e78eb2c2a402b9cbf873d6.html
@@ -0,0 +1,157 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Cyc_write_va_list
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ Cyc_write_va_list()
+
+
+
+
+
+ object Cyc_write_va_list
+ (
+ void *
+ data ,
+
+
+
+
+ object
+ x ,
+
+
+
+
+ object
+ opts
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/group__prim__io_ga20f3c015bf834e1a135689c0770129ef.html b/c-api/group__prim__io_ga20f3c015bf834e1a135689c0770129ef.html
index 5806481e..96ca9a61 100644
--- a/c-api/group__prim__io_ga20f3c015bf834e1a135689c0770129ef.html
+++ b/c-api/group__prim__io_ga20f3c015bf834e1a135689c0770129ef.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_display_va
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -154,7 +157,7 @@ $(function() {
diff --git a/c-api/group__prim__io_ga21041028619d1ec207947e88e7c33e9d.html b/c-api/group__prim__io_ga21041028619d1ec207947e88e7c33e9d.html
index 16d47dea..8b52065f 100644
--- a/c-api/group__prim__io_ga21041028619d1ec207947e88e7c33e9d.html
+++ b/c-api/group__prim__io_ga21041028619d1ec207947e88e7c33e9d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_write
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -148,7 +151,7 @@ $(function() {
diff --git a/c-api/group__prim__io_ga261d14439dba895322ba89fb6460c43c.html b/c-api/group__prim__io_ga261d14439dba895322ba89fb6460c43c.html
index d2fc829c..96e380da 100644
--- a/c-api/group__prim__io_ga261d14439dba895322ba89fb6460c43c.html
+++ b/c-api/group__prim__io_ga261d14439dba895322ba89fb6460c43c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_io_open_input_string
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -142,7 +145,7 @@ $(function() {
diff --git a/c-api/group__prim__io_ga2b23532687105cdadc8c89c20ad4e2b0.html b/c-api/group__prim__io_ga2b23532687105cdadc8c89c20ad4e2b0.html
index 97e076f1..282f43f4 100644
--- a/c-api/group__prim__io_ga2b23532687105cdadc8c89c20ad4e2b0.html
+++ b/c-api/group__prim__io_ga2b23532687105cdadc8c89c20ad4e2b0.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_write_char
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -148,7 +151,7 @@ $(function() {
diff --git a/c-api/group__prim__io_ga329eabcb93e56dbc68bc406d6a06cb20.html b/c-api/group__prim__io_ga329eabcb93e56dbc68bc406d6a06cb20.html
index 5ad46998..ad5427fd 100644
--- a/c-api/group__prim__io_ga329eabcb93e56dbc68bc406d6a06cb20.html
+++ b/c-api/group__prim__io_ga329eabcb93e56dbc68bc406d6a06cb20.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_io_read_line
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -148,7 +151,7 @@ $(function() {
diff --git a/c-api/group__prim__io_ga47de0d55c62abdf079a849de69f99d7d.html b/c-api/group__prim__io_ga47de0d55c62abdf079a849de69f99d7d.html
index 57e587f0..49ad00fe 100644
--- a/c-api/group__prim__io_ga47de0d55c62abdf079a849de69f99d7d.html
+++ b/c-api/group__prim__io_ga47de0d55c62abdf079a849de69f99d7d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_display
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -148,7 +151,7 @@ $(function() {
diff --git a/c-api/group__prim__io_ga4955d717108bc7462f6ae47b18641f37.html b/c-api/group__prim__io_ga4955d717108bc7462f6ae47b18641f37.html
new file mode 100644
index 00000000..644c2654
--- /dev/null
+++ b/c-api/group__prim__io_ga4955d717108bc7462f6ae47b18641f37.html
@@ -0,0 +1,163 @@
+
+
+
+
+
+
+
+Cyclone Scheme: dispatch_write_va
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ dispatch_write_va()
+
+
+
+
+
+ void dispatch_write_va
+ (
+ void *
+ data ,
+
+
+
+
+ object
+ clo ,
+
+
+
+
+ int
+ argc ,
+
+
+
+
+ object *
+ args
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/group__prim__io_ga5df6caaec1914b9c73a81c3fa5767032.html b/c-api/group__prim__io_ga5df6caaec1914b9c73a81c3fa5767032.html
index 0e3a5520..7a031f78 100644
--- a/c-api/group__prim__io_ga5df6caaec1914b9c73a81c3fa5767032.html
+++ b/c-api/group__prim__io_ga5df6caaec1914b9c73a81c3fa5767032.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_io_open_binary_input_file
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -142,7 +145,7 @@ $(function() {
diff --git a/c-api/group__prim__io_ga6e39883eaee28f7f7e0a0b15ba721f3a.html b/c-api/group__prim__io_ga6e39883eaee28f7f7e0a0b15ba721f3a.html
index 179a4d69..6ce4d813 100644
--- a/c-api/group__prim__io_ga6e39883eaee28f7f7e0a0b15ba721f3a.html
+++ b/c-api/group__prim__io_ga6e39883eaee28f7f7e0a0b15ba721f3a.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_io_read_token
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -158,7 +161,7 @@ $(function() {
diff --git a/c-api/group__prim__io_ga7ef5393eb941c6b429cdd3eca2945b2d.html b/c-api/group__prim__io_ga7ef5393eb941c6b429cdd3eca2945b2d.html
index 49615df1..568d9067 100644
--- a/c-api/group__prim__io_ga7ef5393eb941c6b429cdd3eca2945b2d.html
+++ b/c-api/group__prim__io_ga7ef5393eb941c6b429cdd3eca2945b2d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_io_open_output_file
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -142,7 +145,7 @@ $(function() {
diff --git a/c-api/group__prim__io_ga81ced2b999a604b1f918ac234801caa9.html b/c-api/group__prim__io_ga81ced2b999a604b1f918ac234801caa9.html
index 72d96137..b22992fb 100644
--- a/c-api/group__prim__io_ga81ced2b999a604b1f918ac234801caa9.html
+++ b/c-api/group__prim__io_ga81ced2b999a604b1f918ac234801caa9.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_io_peek_char
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -148,7 +151,7 @@ $(function() {
diff --git a/c-api/group__prim__io_ga9049b5801d1e14dd7b521cdc40e13ec4.html b/c-api/group__prim__io_ga9049b5801d1e14dd7b521cdc40e13ec4.html
index 28516edb..aa9eaca1 100644
--- a/c-api/group__prim__io_ga9049b5801d1e14dd7b521cdc40e13ec4.html
+++ b/c-api/group__prim__io_ga9049b5801d1e14dd7b521cdc40e13ec4.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_write_va
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -154,7 +157,7 @@ $(function() {
diff --git a/c-api/group__prim__io_ga91e2218f634afe504003fb11024851ee.html b/c-api/group__prim__io_ga91e2218f634afe504003fb11024851ee.html
index 268da89d..96ad42b2 100644
--- a/c-api/group__prim__io_ga91e2218f634afe504003fb11024851ee.html
+++ b/c-api/group__prim__io_ga91e2218f634afe504003fb11024851ee.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_io_read_u8
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -148,7 +151,7 @@ $(function() {
diff --git a/c-api/group__prim__io_ga963ddb76d4ebb26b77a9e48bc6997596.html b/c-api/group__prim__io_ga963ddb76d4ebb26b77a9e48bc6997596.html
index f8c0c762..2c949961 100644
--- a/c-api/group__prim__io_ga963ddb76d4ebb26b77a9e48bc6997596.html
+++ b/c-api/group__prim__io_ga963ddb76d4ebb26b77a9e48bc6997596.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_write_bytevector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -160,7 +163,7 @@ $(function() {
diff --git a/c-api/group__prim__io_ga964d43de203096904b0dd4a1ef83010d.html b/c-api/group__prim__io_ga964d43de203096904b0dd4a1ef83010d.html
new file mode 100644
index 00000000..7598bab8
--- /dev/null
+++ b/c-api/group__prim__io_ga964d43de203096904b0dd4a1ef83010d.html
@@ -0,0 +1,157 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Cyc_display_va_list
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ Cyc_display_va_list()
+
+
+
+
+
+ object Cyc_display_va_list
+ (
+ void *
+ data ,
+
+
+
+
+ object
+ x ,
+
+
+
+
+ object
+ opts
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/group__prim__io_gaa7bb6a4875303b0ebc38aaf12d9a8dcb.html b/c-api/group__prim__io_gaa7bb6a4875303b0ebc38aaf12d9a8dcb.html
index 7f421b7d..ff49381b 100644
--- a/c-api/group__prim__io_gaa7bb6a4875303b0ebc38aaf12d9a8dcb.html
+++ b/c-api/group__prim__io_gaa7bb6a4875303b0ebc38aaf12d9a8dcb.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_io_open_input_file
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -142,7 +145,7 @@ $(function() {
diff --git a/c-api/group__prim__io_gaaff287a3e771e1d8113ca6f957516dd1.html b/c-api/group__prim__io_gaaff287a3e771e1d8113ca6f957516dd1.html
index b9297a49..e97dc47b 100644
--- a/c-api/group__prim__io_gaaff287a3e771e1d8113ca6f957516dd1.html
+++ b/c-api/group__prim__io_gaaff287a3e771e1d8113ca6f957516dd1.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_stdin
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -132,7 +135,7 @@ $(function() {
diff --git a/c-api/group__prim__io_gab4df24760778bbe8edcd30066cc238d4.html b/c-api/group__prim__io_gab4df24760778bbe8edcd30066cc238d4.html
index 44a6ffed..8185d2f6 100644
--- a/c-api/group__prim__io_gab4df24760778bbe8edcd30066cc238d4.html
+++ b/c-api/group__prim__io_gab4df24760778bbe8edcd30066cc238d4.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_write_u8
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -148,7 +151,7 @@ $(function() {
diff --git a/c-api/group__prim__io_gabf6bc11cd85a1c29b0e446a45b6f82a7.html b/c-api/group__prim__io_gabf6bc11cd85a1c29b0e446a45b6f82a7.html
index fc6e658c..7a67fd96 100644
--- a/c-api/group__prim__io_gabf6bc11cd85a1c29b0e446a45b6f82a7.html
+++ b/c-api/group__prim__io_gabf6bc11cd85a1c29b0e446a45b6f82a7.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_io_get_output_string
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -148,7 +151,7 @@ $(function() {
diff --git a/c-api/group__prim__io_gac3129086e043e700b35b97a461cb9e4f.html b/c-api/group__prim__io_gac3129086e043e700b35b97a461cb9e4f.html
new file mode 100644
index 00000000..8f26c594
--- /dev/null
+++ b/c-api/group__prim__io_gac3129086e043e700b35b97a461cb9e4f.html
@@ -0,0 +1,163 @@
+
+
+
+
+
+
+
+Cyclone Scheme: dispatch_display_va
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ dispatch_display_va()
+
+
+
+
+
+ void dispatch_display_va
+ (
+ void *
+ data ,
+
+
+
+
+ object
+ clo ,
+
+
+
+
+ int
+ argc ,
+
+
+
+
+ object *
+ args
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/group__prim__io_gac3456c8687da0dddc603b4590ba29a5b.html b/c-api/group__prim__io_gac3456c8687da0dddc603b4590ba29a5b.html
index f8ae48e5..0e8280f8 100644
--- a/c-api/group__prim__io_gac3456c8687da0dddc603b4590ba29a5b.html
+++ b/c-api/group__prim__io_gac3456c8687da0dddc603b4590ba29a5b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_io_open_input_bytevector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -142,7 +145,7 @@ $(function() {
diff --git a/c-api/group__prim__io_gac839d38bc8e21ab9190dba1ea7fedc7e.html b/c-api/group__prim__io_gac839d38bc8e21ab9190dba1ea7fedc7e.html
index 191c95ac..11d27409 100644
--- a/c-api/group__prim__io_gac839d38bc8e21ab9190dba1ea7fedc7e.html
+++ b/c-api/group__prim__io_gac839d38bc8e21ab9190dba1ea7fedc7e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_io_close_port
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -142,7 +145,7 @@ $(function() {
diff --git a/c-api/group__prim__io_gac8b029726658e96eda0026818c74b44a.html b/c-api/group__prim__io_gac8b029726658e96eda0026818c74b44a.html
index 81a890cb..b079d506 100644
--- a/c-api/group__prim__io_gac8b029726658e96eda0026818c74b44a.html
+++ b/c-api/group__prim__io_gac8b029726658e96eda0026818c74b44a.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_stdout
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -132,7 +135,7 @@ $(function() {
diff --git a/c-api/group__prim__io_gacbab4837a1634cce343d75d4790b832f.html b/c-api/group__prim__io_gacbab4837a1634cce343d75d4790b832f.html
index c90b46c1..bf35c3ec 100644
--- a/c-api/group__prim__io_gacbab4837a1634cce343d75d4790b832f.html
+++ b/c-api/group__prim__io_gacbab4837a1634cce343d75d4790b832f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_stderr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -132,7 +135,7 @@ $(function() {
diff --git a/c-api/group__prim__io_gad4a2ffeef5525cfe5d07b60daf0072db.html b/c-api/group__prim__io_gad4a2ffeef5525cfe5d07b60daf0072db.html
index 6dfd3a60..72320e62 100644
--- a/c-api/group__prim__io_gad4a2ffeef5525cfe5d07b60daf0072db.html
+++ b/c-api/group__prim__io_gad4a2ffeef5525cfe5d07b60daf0072db.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_io_open_output_string
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -132,7 +135,7 @@ $(function() {
diff --git a/c-api/group__prim__io_gad59c281583da55dfbb0c83b9ddafa71d.html b/c-api/group__prim__io_gad59c281583da55dfbb0c83b9ddafa71d.html
index c69ca5d6..e6f98876 100644
--- a/c-api/group__prim__io_gad59c281583da55dfbb0c83b9ddafa71d.html
+++ b/c-api/group__prim__io_gad59c281583da55dfbb0c83b9ddafa71d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_io_peek_u8
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -148,7 +151,7 @@ $(function() {
diff --git a/c-api/group__prim__io_gafa0ab42617b52e0b96da30e98e91665b.html b/c-api/group__prim__io_gafa0ab42617b52e0b96da30e98e91665b.html
index 387e64c3..b79ecb81 100644
--- a/c-api/group__prim__io_gafa0ab42617b52e0b96da30e98e91665b.html
+++ b/c-api/group__prim__io_gafa0ab42617b52e0b96da30e98e91665b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_io_read_char
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -148,7 +151,7 @@ $(function() {
diff --git a/c-api/group__prim__io_gafff351264d7142228ee45c790ea10fcc.html b/c-api/group__prim__io_gafff351264d7142228ee45c790ea10fcc.html
index 5fc70f9e..f61457e5 100644
--- a/c-api/group__prim__io_gafff351264d7142228ee45c790ea10fcc.html
+++ b/c-api/group__prim__io_gafff351264d7142228ee45c790ea10fcc.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_io_flush_output_port
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -142,7 +145,7 @@ $(function() {
diff --git a/c-api/group__prim__num.html b/c-api/group__prim__num.html
index 4bcdeac7..3789cebe 100644
--- a/c-api/group__prim__num.html
+++ b/c-api/group__prim__num.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Numbers
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -170,6 +173,8 @@ Functions
int Cyc_num_lte_op (void *, object x, object y)
+object Cyc_num_op_args (void *data, int argc, object (fn_op(void *, common_type *, object )), int default_no_args, int default_one_arg, object *args, common_type *buf)
+
object Cyc_num_op_va_list (void *data, int argc, object (fn_op(void *, common_type *, object )), int default_no_args, int default_one_arg, object n, va_list ns, common_type *buf)
object Cyc_number2string2 (void *data, object cont, int argc, object n,...)
@@ -190,11 +195,23 @@ Functions
Number functions.
+@ integer_tag
Definition: types.h:61
+
+
+#define bignum_value(x)
Definition: types.h:913
+Deprecated - boxed integers.
Definition: types.h:808
+#define make_double(n, v)
Definition: types.h:884
+#define type_of(obj)
Definition: types.h:92
+@ bignum_tag
Definition: types.h:62
+
+Double-precision floating point type, also known as a flonum.
Definition: types.h:877
+#define complex_num_value(x)
Definition: types.h:916
+@ complex_num_tag
Definition: types.h:70
diff --git a/c-api/group__prim__num_ga071960f5873cc9126ffa352e71324c43.html b/c-api/group__prim__num_ga071960f5873cc9126ffa352e71324c43.html
new file mode 100644
index 00000000..22e09c0b
--- /dev/null
+++ b/c-api/group__prim__num_ga071960f5873cc9126ffa352e71324c43.html
@@ -0,0 +1,204 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Cyc_num_op_args
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ Cyc_num_op_args()
+
+
+
+
+
+ object Cyc_num_op_args
+ (
+ void *
+ data ,
+
+
+
+
+ int
+ argc ,
+
+
+
+
+ object (fn_op(void *, common_type *, object ))
+ ,
+
+
+
+
+ int
+ default_no_args ,
+
+
+
+
+ int
+ default_one_arg ,
+
+
+
+
+ object *
+ args ,
+
+
+
+
+ common_type *
+ buf
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/group__prim__num_ga0b27392e34bfe90a8e9dd5fde42fa990.html b/c-api/group__prim__num_ga0b27392e34bfe90a8e9dd5fde42fa990.html
index b8f53853..cdaba5db 100644
--- a/c-api/group__prim__num_ga0b27392e34bfe90a8e9dd5fde42fa990.html
+++ b/c-api/group__prim__num_ga0b27392e34bfe90a8e9dd5fde42fa990.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_int2bignum
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -164,7 +168,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga18cda2ca1598ea5144b4c48d4e75f2e0.html b/c-api/group__prim__num_ga18cda2ca1598ea5144b4c48d4e75f2e0.html
index f369ecec..15c341d9 100644
--- a/c-api/group__prim__num_ga18cda2ca1598ea5144b4c48d4e75f2e0.html
+++ b/c-api/group__prim__num_ga18cda2ca1598ea5144b4c48d4e75f2e0.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: return_inexact_double_or_cplx_op_no_cps
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: double unboxed; \
Cyc_check_num(data, z); \
assign_complex_num(ptr, unboxed); \
return ptr; \
} else { \
} \
assign_double(ptr, unboxed); \
return ptr;
-
-
Double-precision floating point type, also known as a flonum.
Definition: types.h:876
-
-
-
#define type_of(obj)
Definition: types.h:91
-
Deprecated - boxed integers.
Definition: types.h:807
-
#define bignum_value(x)
Definition: types.h:911
-
#define complex_num_value(x)
Definition: types.h:914
-
-
+
Value: double unboxed; \
+
Cyc_check_num(data, z); \
+
+
+
+
+
+
+
+
+
assign_complex_num(ptr, unboxed); \
+
return ptr; \
+
} else { \
+
+
} \
+
assign_double(ptr, unboxed); \
+
return ptr;
+
Extract double or complex number and return it to caller
+
+@ integer_tag
Definition: types.h:61
+
+
+#define bignum_value(x)
Definition: types.h:913
+Deprecated - boxed integers.
Definition: types.h:808
+#define type_of(obj)
Definition: types.h:92
+@ bignum_tag
Definition: types.h:62
+Double-precision floating point type, also known as a flonum.
Definition: types.h:877
+#define complex_num_value(x)
Definition: types.h:916
+@ complex_num_tag
Definition: types.h:70
diff --git a/c-api/group__prim__num_ga18f45c330edf7e1bdb00a304737f5fc1.html b/c-api/group__prim__num_ga18f45c330edf7e1bdb00a304737f5fc1.html
index bd08981b..1eabc417 100644
--- a/c-api/group__prim__num_ga18f45c330edf7e1bdb00a304737f5fc1.html
+++ b/c-api/group__prim__num_ga18f45c330edf7e1bdb00a304737f5fc1.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_fast_vector_2
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -170,7 +174,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga1a92120734badcb16409face78b180a7.html b/c-api/group__prim__num_ga1a92120734badcb16409face78b180a7.html
index 3dcead64..3943b5d0 100644
--- a/c-api/group__prim__num_ga1a92120734badcb16409face78b180a7.html
+++ b/c-api/group__prim__num_ga1a92120734badcb16409face78b180a7.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_fast_mul
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -176,7 +180,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga1c5fd0db248e310b987e7d8fce95fe3a.html b/c-api/group__prim__num_ga1c5fd0db248e310b987e7d8fce95fe3a.html
index d6d73ece..67a683f2 100644
--- a/c-api/group__prim__num_ga1c5fd0db248e310b987e7d8fce95fe3a.html
+++ b/c-api/group__prim__num_ga1c5fd0db248e310b987e7d8fce95fe3a.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_num_gte_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -170,7 +174,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga1ecf63adf4735bec4fe276327f9b136e.html b/c-api/group__prim__num_ga1ecf63adf4735bec4fe276327f9b136e.html
index 2872ff8d..7335ec9f 100644
--- a/c-api/group__prim__num_ga1ecf63adf4735bec4fe276327f9b136e.html
+++ b/c-api/group__prim__num_ga1ecf63adf4735bec4fe276327f9b136e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_sub_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -170,7 +174,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga1ffd146edb987c739e4a39b73190ad21.html b/c-api/group__prim__num_ga1ffd146edb987c739e4a39b73190ad21.html
index b93ad9fb..a5ca957c 100644
--- a/c-api/group__prim__num_ga1ffd146edb987c739e4a39b73190ad21.html
+++ b/c-api/group__prim__num_ga1ffd146edb987c739e4a39b73190ad21.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_num_lt_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -170,7 +174,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga20015894c20c3d259c48dcc65f808349.html b/c-api/group__prim__num_ga20015894c20c3d259c48dcc65f808349.html
index ff9f7b17..6441a760 100644
--- a/c-api/group__prim__num_ga20015894c20c3d259c48dcc65f808349.html
+++ b/c-api/group__prim__num_ga20015894c20c3d259c48dcc65f808349.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_integer2char
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -164,7 +168,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga220de93ec65338197156768ff8236416.html b/c-api/group__prim__num_ga220de93ec65338197156768ff8236416.html
index be9cd834..95ee32f2 100644
--- a/c-api/group__prim__num_ga220de93ec65338197156768ff8236416.html
+++ b/c-api/group__prim__num_ga220de93ec65338197156768ff8236416.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_bignum_cmp
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -182,7 +186,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga2a520375f405b6f70c07ce6143ec8f27.html b/c-api/group__prim__num_ga2a520375f405b6f70c07ce6143ec8f27.html
index 6972723d..9c3f86d3 100644
--- a/c-api/group__prim__num_ga2a520375f405b6f70c07ce6143ec8f27.html
+++ b/c-api/group__prim__num_ga2a520375f405b6f70c07ce6143ec8f27.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_remainder
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -176,7 +180,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga37d0df5706205ce36fe3bdeb2dc8673d.html b/c-api/group__prim__num_ga37d0df5706205ce36fe3bdeb2dc8673d.html
index 7d49408b..b4f77f42 100644
--- a/c-api/group__prim__num_ga37d0df5706205ce36fe3bdeb2dc8673d.html
+++ b/c-api/group__prim__num_ga37d0df5706205ce36fe3bdeb2dc8673d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_num_gt_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -170,7 +174,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga38513c47174c8f45396c7c715253146e.html b/c-api/group__prim__num_ga38513c47174c8f45396c7c715253146e.html
index 34cb9954..f6e6fcd8 100644
--- a/c-api/group__prim__num_ga38513c47174c8f45396c7c715253146e.html
+++ b/c-api/group__prim__num_ga38513c47174c8f45396c7c715253146e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_mul
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -182,7 +186,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga3876f221d5588b84f00267d97fcb5fda.html b/c-api/group__prim__num_ga3876f221d5588b84f00267d97fcb5fda.html
index a2ff6b51..726c4e7a 100644
--- a/c-api/group__prim__num_ga3876f221d5588b84f00267d97fcb5fda.html
+++ b/c-api/group__prim__num_ga3876f221d5588b84f00267d97fcb5fda.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_sub
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -182,7 +186,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga44bbc2ea6ed1d12e3c88b2211971e8bb.html b/c-api/group__prim__num_ga44bbc2ea6ed1d12e3c88b2211971e8bb.html
index dbd8703d..a4cee68c 100644
--- a/c-api/group__prim__num_ga44bbc2ea6ed1d12e3c88b2211971e8bb.html
+++ b/c-api/group__prim__num_ga44bbc2ea6ed1d12e3c88b2211971e8bb.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_bit_unset
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -170,7 +174,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga4585608d61500eeebf89dc69715f2197.html b/c-api/group__prim__num_ga4585608d61500eeebf89dc69715f2197.html
index 65e3e5e9..7ef18420 100644
--- a/c-api/group__prim__num_ga4585608d61500eeebf89dc69715f2197.html
+++ b/c-api/group__prim__num_ga4585608d61500eeebf89dc69715f2197.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_div_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -170,7 +174,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga4a8ab988f179bb665ec44092a61ac8dc.html b/c-api/group__prim__num_ga4a8ab988f179bb665ec44092a61ac8dc.html
index 3e01bac2..cd1d8806 100644
--- a/c-api/group__prim__num_ga4a8ab988f179bb665ec44092a61ac8dc.html
+++ b/c-api/group__prim__num_ga4a8ab988f179bb665ec44092a61ac8dc.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_num_cmp_va_list
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -182,7 +186,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga4da16c24b2f300d1be526821734d3eba.html b/c-api/group__prim__num_ga4da16c24b2f300d1be526821734d3eba.html
index 9a667258..26be5b73 100644
--- a/c-api/group__prim__num_ga4da16c24b2f300d1be526821734d3eba.html
+++ b/c-api/group__prim__num_ga4da16c24b2f300d1be526821734d3eba.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_fast_sub
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -176,7 +180,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga5a075afb76f49f8290862abab785dadd.html b/c-api/group__prim__num_ga5a075afb76f49f8290862abab785dadd.html
index 46fa6f56..1d89a46b 100644
--- a/c-api/group__prim__num_ga5a075afb76f49f8290862abab785dadd.html
+++ b/c-api/group__prim__num_ga5a075afb76f49f8290862abab785dadd.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_bignum_normalize
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -164,7 +168,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga602256ff522f594803641488d5c72cb4.html b/c-api/group__prim__num_ga602256ff522f594803641488d5c72cb4.html
index ca38d78e..079a2615 100644
--- a/c-api/group__prim__num_ga602256ff522f594803641488d5c72cb4.html
+++ b/c-api/group__prim__num_ga602256ff522f594803641488d5c72cb4.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_num_fast_gte_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -170,7 +174,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga72d2cecb43f0703c1e72fb1141bff061.html b/c-api/group__prim__num_ga72d2cecb43f0703c1e72fb1141bff061.html
index 1725823f..8493f136 100644
--- a/c-api/group__prim__num_ga72d2cecb43f0703c1e72fb1141bff061.html
+++ b/c-api/group__prim__num_ga72d2cecb43f0703c1e72fb1141bff061.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_fast_list_2
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -170,7 +174,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga73c3b82e3a6df269d190398c41de915b.html b/c-api/group__prim__num_ga73c3b82e3a6df269d190398c41de915b.html
index 9e61b915..73c36270 100644
--- a/c-api/group__prim__num_ga73c3b82e3a6df269d190398c41de915b.html
+++ b/c-api/group__prim__num_ga73c3b82e3a6df269d190398c41de915b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_num_fast_eq_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -170,7 +174,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga74033952fbba01b882a24a5e247448c1.html b/c-api/group__prim__num_ga74033952fbba01b882a24a5e247448c1.html
index 07d8b43a..0f5ce587 100644
--- a/c-api/group__prim__num_ga74033952fbba01b882a24a5e247448c1.html
+++ b/c-api/group__prim__num_ga74033952fbba01b882a24a5e247448c1.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_num_op_va_list
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -200,7 +204,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga74463c3b7c33dfcde7fd82661ef064d1.html b/c-api/group__prim__num_ga74463c3b7c33dfcde7fd82661ef064d1.html
index 809e7a6b..af21547e 100644
--- a/c-api/group__prim__num_ga74463c3b7c33dfcde7fd82661ef064d1.html
+++ b/c-api/group__prim__num_ga74463c3b7c33dfcde7fd82661ef064d1.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_num_eq
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -182,7 +186,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga7ad2cfc0cc5bb041054b8b05c954aa45.html b/c-api/group__prim__num_ga7ad2cfc0cc5bb041054b8b05c954aa45.html
index 67afc73b..82e26247 100644
--- a/c-api/group__prim__num_ga7ad2cfc0cc5bb041054b8b05c954aa45.html
+++ b/c-api/group__prim__num_ga7ad2cfc0cc5bb041054b8b05c954aa45.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: return_inexact_double_or_cplx_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: Cyc_check_num(data, z); \
complex_num_type cn; \
assign_complex_num((&cn), unboxed); \
return_closcall1(data, cont, &cn); \
} else { \
} \
return_closcall1(data, cont, &d)
-
-
Double-precision floating point type, also known as a flonum.
Definition: types.h:876
-
-
-
#define type_of(obj)
Definition: types.h:91
-
#define make_double(n, v)
Definition: types.h:883
-
Deprecated - boxed integers.
Definition: types.h:807
-
#define bignum_value(x)
Definition: types.h:911
-
#define complex_num_value(x)
Definition: types.h:914
-
-
+
Value:
+
Cyc_check_num(data, z); \
+
+
+
+
+
+
+
+
complex_num_type cn; \
+
+
assign_complex_num((&cn), unboxed); \
+
return_closcall1(data, cont, &cn); \
+
} else { \
+
+
} \
+
return_closcall1(data, cont, &d)
+
Extract double or complex number and pass it in a call to continuation cont
+
+@ integer_tag
Definition: types.h:61
+
+
+#define bignum_value(x)
Definition: types.h:913
+Deprecated - boxed integers.
Definition: types.h:808
+#define make_double(n, v)
Definition: types.h:884
+#define type_of(obj)
Definition: types.h:92
+@ bignum_tag
Definition: types.h:62
+Double-precision floating point type, also known as a flonum.
Definition: types.h:877
+#define complex_num_value(x)
Definition: types.h:916
+@ complex_num_tag
Definition: types.h:70
diff --git a/c-api/group__prim__num_ga7c66fe8e4387706d37c9b0a2da4cbe32.html b/c-api/group__prim__num_ga7c66fe8e4387706d37c9b0a2da4cbe32.html
index 451f0723..21c5aaad 100644
--- a/c-api/group__prim__num_ga7c66fe8e4387706d37c9b0a2da4cbe32.html
+++ b/c-api/group__prim__num_ga7c66fe8e4387706d37c9b0a2da4cbe32.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_if
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -170,7 +174,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga7d86afc763ae885340ae4e54df6a573b.html b/c-api/group__prim__num_ga7d86afc763ae885340ae4e54df6a573b.html
index cae968b8..d8746421 100644
--- a/c-api/group__prim__num_ga7d86afc763ae885340ae4e54df6a573b.html
+++ b/c-api/group__prim__num_ga7d86afc763ae885340ae4e54df6a573b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_num_fast_lte_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -170,7 +174,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga840ceba7179441826bf060350840ad11.html b/c-api/group__prim__num_ga840ceba7179441826bf060350840ad11.html
index 80685006..07e777e4 100644
--- a/c-api/group__prim__num_ga840ceba7179441826bf060350840ad11.html
+++ b/c-api/group__prim__num_ga840ceba7179441826bf060350840ad11.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_number2string2
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -182,7 +186,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga8fd72084ba0d78cb32c117ee4d315c55.html b/c-api/group__prim__num_ga8fd72084ba0d78cb32c117ee4d315c55.html
index d8f474b1..abcc7a0d 100644
--- a/c-api/group__prim__num_ga8fd72084ba0d78cb32c117ee4d315c55.html
+++ b/c-api/group__prim__num_ga8fd72084ba0d78cb32c117ee4d315c55.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_num_fast_gt_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -170,7 +174,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga92e1b776379196d0658649140946aa4a.html b/c-api/group__prim__num_ga92e1b776379196d0658649140946aa4a.html
index 5b3b85f1..c51300b1 100644
--- a/c-api/group__prim__num_ga92e1b776379196d0658649140946aa4a.html
+++ b/c-api/group__prim__num_ga92e1b776379196d0658649140946aa4a.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: return_exact_double_op_no_cps
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: int i = 0; \
Cyc_check_num(data, z); \
return z; \
} else { \
} \
-
-
Double-precision floating point type, also known as a flonum.
Definition: types.h:876
-
-
-
#define type_of(obj)
Definition: types.h:91
-
Deprecated - boxed integers.
Definition: types.h:807
-
-
+
Value: int i = 0; \
+
Cyc_check_num(data, z); \
+
+
+
+
+
+
return z; \
+
} else { \
+
+
} \
+
+
Directly return exact or double number to caller
+
+@ integer_tag
Definition: types.h:61
+
+
+Deprecated - boxed integers.
Definition: types.h:808
+#define type_of(obj)
Definition: types.h:92
+@ bignum_tag
Definition: types.h:62
+
+Double-precision floating point type, also known as a flonum.
Definition: types.h:877
diff --git a/c-api/group__prim__num_ga93fd1505860fa36dd4f055f00a178830.html b/c-api/group__prim__num_ga93fd1505860fa36dd4f055f00a178830.html
index beed0c99..589c50b2 100644
--- a/c-api/group__prim__num_ga93fd1505860fa36dd4f055f00a178830.html
+++ b/c-api/group__prim__num_ga93fd1505860fa36dd4f055f00a178830.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: return_exact_double_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: int i = 0; \
Cyc_check_num(data, z); \
return_closcall1(data, cont, z); \
} else { \
} \
-
-
Double-precision floating point type, also known as a flonum.
Definition: types.h:876
-
-
-
#define type_of(obj)
Definition: types.h:91
-
Deprecated - boxed integers.
Definition: types.h:807
-
-
+
Value: int i = 0; \
+
Cyc_check_num(data, z); \
+
+
+
+
+
+
return_closcall1(data, cont, z); \
+
} else { \
+
+
} \
+
+
Extract exact or double number and pass it in a call to continuation cont
+
+@ integer_tag
Definition: types.h:61
+
+
+Deprecated - boxed integers.
Definition: types.h:808
+#define type_of(obj)
Definition: types.h:92
+@ bignum_tag
Definition: types.h:62
+
+Double-precision floating point type, also known as a flonum.
Definition: types.h:877
diff --git a/c-api/group__prim__num_ga95db45afc1570c24dcc5684194ff7e56.html b/c-api/group__prim__num_ga95db45afc1570c24dcc5684194ff7e56.html
index 96e5009e..02854e7a 100644
--- a/c-api/group__prim__num_ga95db45afc1570c24dcc5684194ff7e56.html
+++ b/c-api/group__prim__num_ga95db45afc1570c24dcc5684194ff7e56.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_fast_div
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -176,7 +180,7 @@ $(function() {
diff --git a/c-api/group__prim__num_ga990d7992e7f6ac29158c196ac46ce33f.html b/c-api/group__prim__num_ga990d7992e7f6ac29158c196ac46ce33f.html
index b853a255..99f7c4c3 100644
--- a/c-api/group__prim__num_ga990d7992e7f6ac29158c196ac46ce33f.html
+++ b/c-api/group__prim__num_ga990d7992e7f6ac29158c196ac46ce33f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: return_inexact_double_op_no_cps
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: double unboxed; \
Cyc_check_num(data, z); \
} else { \
} \
assign_double(ptr, unboxed); \
return ptr;
-
Double-precision floating point type, also known as a flonum.
Definition: types.h:876
-
-
-
#define type_of(obj)
Definition: types.h:91
-
Deprecated - boxed integers.
Definition: types.h:807
-
#define bignum_value(x)
Definition: types.h:911
-
-
+
Value: double unboxed; \
+
Cyc_check_num(data, z); \
+
+
+
+
+
+
+
} else { \
+
+
} \
+
assign_double(ptr, unboxed); \
+
return ptr;
+
Extract double and return it to caller
+
+@ integer_tag
Definition: types.h:61
+
+
+#define bignum_value(x)
Definition: types.h:913
+Deprecated - boxed integers.
Definition: types.h:808
+#define type_of(obj)
Definition: types.h:92
+@ bignum_tag
Definition: types.h:62
+Double-precision floating point type, also known as a flonum.
Definition: types.h:877
diff --git a/c-api/group__prim__num_ga9e6d27dcae98118c6c0c4ff6aa60d058.html b/c-api/group__prim__num_ga9e6d27dcae98118c6c0c4ff6aa60d058.html
index 3b28654f..2bdc005e 100644
--- a/c-api/group__prim__num_ga9e6d27dcae98118c6c0c4ff6aa60d058.html
+++ b/c-api/group__prim__num_ga9e6d27dcae98118c6c0c4ff6aa60d058.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_num_lte
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -182,7 +186,7 @@ $(function() {
diff --git a/c-api/group__prim__num_gaa5a8bdfdac41d82d2781d18a225c9894.html b/c-api/group__prim__num_gaa5a8bdfdac41d82d2781d18a225c9894.html
index 40e2c35e..4e98371b 100644
--- a/c-api/group__prim__num_gaa5a8bdfdac41d82d2781d18a225c9894.html
+++ b/c-api/group__prim__num_gaa5a8bdfdac41d82d2781d18a225c9894.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: MRG32k3a
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -154,7 +158,7 @@ $(function() {
diff --git a/c-api/group__prim__num_gaa9fab05455dc35270acbb075bd5b6bd7.html b/c-api/group__prim__num_gaa9fab05455dc35270acbb075bd5b6bd7.html
index 023af968..318d756d 100644
--- a/c-api/group__prim__num_gaa9fab05455dc35270acbb075bd5b6bd7.html
+++ b/c-api/group__prim__num_gaa9fab05455dc35270acbb075bd5b6bd7.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_sum_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -170,7 +174,7 @@ $(function() {
diff --git a/c-api/group__prim__num_gaaa15e5d9e10b8c69a27175bde771064e.html b/c-api/group__prim__num_gaaa15e5d9e10b8c69a27175bde771064e.html
index e2b537ee..0f460261 100644
--- a/c-api/group__prim__num_gaaa15e5d9e10b8c69a27175bde771064e.html
+++ b/c-api/group__prim__num_gaaa15e5d9e10b8c69a27175bde771064e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_fast_sum
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -176,7 +180,7 @@ $(function() {
diff --git a/c-api/group__prim__num_gab47f608746f7f23bf231593c5a176d90.html b/c-api/group__prim__num_gab47f608746f7f23bf231593c5a176d90.html
index 575800bb..6d453719 100644
--- a/c-api/group__prim__num_gab47f608746f7f23bf231593c5a176d90.html
+++ b/c-api/group__prim__num_gab47f608746f7f23bf231593c5a176d90.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_sum
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -182,7 +186,7 @@ $(function() {
diff --git a/c-api/group__prim__num_gabf0e819f64383aa920b0106c4476e6a5.html b/c-api/group__prim__num_gabf0e819f64383aa920b0106c4476e6a5.html
index 2842f8d9..6dc01333 100644
--- a/c-api/group__prim__num_gabf0e819f64383aa920b0106c4476e6a5.html
+++ b/c-api/group__prim__num_gabf0e819f64383aa920b0106c4476e6a5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_num_gte
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -182,7 +186,7 @@ $(function() {
diff --git a/c-api/group__prim__num_gac2119573bb4ae8e92d409c1bfc88f613.html b/c-api/group__prim__num_gac2119573bb4ae8e92d409c1bfc88f613.html
index 16ca9bb5..26751767 100644
--- a/c-api/group__prim__num_gac2119573bb4ae8e92d409c1bfc88f613.html
+++ b/c-api/group__prim__num_gac2119573bb4ae8e92d409c1bfc88f613.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_fast_list_3
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -176,7 +180,7 @@ $(function() {
diff --git a/c-api/group__prim__num_gac228044b422272bb9e98db5161b61bac.html b/c-api/group__prim__num_gac228044b422272bb9e98db5161b61bac.html
index 58362823..1d956d3c 100644
--- a/c-api/group__prim__num_gac228044b422272bb9e98db5161b61bac.html
+++ b/c-api/group__prim__num_gac228044b422272bb9e98db5161b61bac.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_make_rectangular
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -176,7 +180,7 @@ $(function() {
diff --git a/c-api/group__prim__num_gac4a5fcfd182deeb8bc9aa00da0e1e531.html b/c-api/group__prim__num_gac4a5fcfd182deeb8bc9aa00da0e1e531.html
index 7d419c49..828fba11 100644
--- a/c-api/group__prim__num_gac4a5fcfd182deeb8bc9aa00da0e1e531.html
+++ b/c-api/group__prim__num_gac4a5fcfd182deeb8bc9aa00da0e1e531.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_fast_vector_5
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -188,7 +192,7 @@ $(function() {
diff --git a/c-api/group__prim__num_gacb1133994d3eac19dd00b24a2125ed15.html b/c-api/group__prim__num_gacb1133994d3eac19dd00b24a2125ed15.html
index 25d2c3a1..212acdc0 100644
--- a/c-api/group__prim__num_gacb1133994d3eac19dd00b24a2125ed15.html
+++ b/c-api/group__prim__num_gacb1133994d3eac19dd00b24a2125ed15.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_fast_list_4
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -182,7 +186,7 @@ $(function() {
diff --git a/c-api/group__prim__num_gad12385aa1843599089d8ae4c20fee762.html b/c-api/group__prim__num_gad12385aa1843599089d8ae4c20fee762.html
index 97cbeb89..dc3df4bc 100644
--- a/c-api/group__prim__num_gad12385aa1843599089d8ae4c20fee762.html
+++ b/c-api/group__prim__num_gad12385aa1843599089d8ae4c20fee762.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_num_fast_lt_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -170,7 +174,7 @@ $(function() {
diff --git a/c-api/group__prim__num_gad22b55f628f734abf76f0b556ac9c9a8.html b/c-api/group__prim__num_gad22b55f628f734abf76f0b556ac9c9a8.html
index f73cceb4..250a3970 100644
--- a/c-api/group__prim__num_gad22b55f628f734abf76f0b556ac9c9a8.html
+++ b/c-api/group__prim__num_gad22b55f628f734abf76f0b556ac9c9a8.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_num_gt
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -182,7 +186,7 @@ $(function() {
diff --git a/c-api/group__prim__num_gad3feca689234f78be4234b6525fa354d.html b/c-api/group__prim__num_gad3feca689234f78be4234b6525fa354d.html
index 2cebb8ed..075448f1 100644
--- a/c-api/group__prim__num_gad3feca689234f78be4234b6525fa354d.html
+++ b/c-api/group__prim__num_gad3feca689234f78be4234b6525fa354d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: unbox_number
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value:
-
Double-precision floating point type, also known as a flonum.
Definition: types.h:876
-
-
-
#define type_of(obj)
Definition: types.h:91
-
Deprecated - boxed integers.
Definition: types.h:807
-
+
Value: Take Scheme object that is a number and return the number as a C type
+
+@ integer_tag
Definition: types.h:61
+
+
+Deprecated - boxed integers.
Definition: types.h:808
+#define type_of(obj)
Definition: types.h:92
+Double-precision floating point type, also known as a flonum.
Definition: types.h:877
diff --git a/c-api/group__prim__num_gad505431af6b506e9fc997cf2463dfc16.html b/c-api/group__prim__num_gad505431af6b506e9fc997cf2463dfc16.html
index 5f74f522..d24b9f07 100644
--- a/c-api/group__prim__num_gad505431af6b506e9fc997cf2463dfc16.html
+++ b/c-api/group__prim__num_gad505431af6b506e9fc997cf2463dfc16.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_mul_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -170,7 +174,7 @@ $(function() {
diff --git a/c-api/group__prim__num_gad8c46bbc9a7d255b208cc52db54086b4.html b/c-api/group__prim__num_gad8c46bbc9a7d255b208cc52db54086b4.html
index 2e5db597..0d3d12e9 100644
--- a/c-api/group__prim__num_gad8c46bbc9a7d255b208cc52db54086b4.html
+++ b/c-api/group__prim__num_gad8c46bbc9a7d255b208cc52db54086b4.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_num_lte_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -170,7 +174,7 @@ $(function() {
diff --git a/c-api/group__prim__num_gadf8b11205d623c5110f596a5f30c3be3.html b/c-api/group__prim__num_gadf8b11205d623c5110f596a5f30c3be3.html
index 2793b7a8..884dc6f8 100644
--- a/c-api/group__prim__num_gadf8b11205d623c5110f596a5f30c3be3.html
+++ b/c-api/group__prim__num_gadf8b11205d623c5110f596a5f30c3be3.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_fast_vector_4
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -182,7 +186,7 @@ $(function() {
diff --git a/c-api/group__prim__num_gadfc4f7bf32ca4e4adb198ed18ff877c3.html b/c-api/group__prim__num_gadfc4f7bf32ca4e4adb198ed18ff877c3.html
index 3832021c..52cc8126 100644
--- a/c-api/group__prim__num_gadfc4f7bf32ca4e4adb198ed18ff877c3.html
+++ b/c-api/group__prim__num_gadfc4f7bf32ca4e4adb198ed18ff877c3.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_fast_vector_3
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -176,7 +180,7 @@ $(function() {
diff --git a/c-api/group__prim__num_gae8ea3533e198e99a23b42b6d075fb560.html b/c-api/group__prim__num_gae8ea3533e198e99a23b42b6d075fb560.html
index db38842f..d42b9197 100644
--- a/c-api/group__prim__num_gae8ea3533e198e99a23b42b6d075fb560.html
+++ b/c-api/group__prim__num_gae8ea3533e198e99a23b42b6d075fb560.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: return_inexact_double_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
Value: Cyc_check_num(data, z); \
} else { \
} \
return_closcall1(data, cont, &d)
-
Double-precision floating point type, also known as a flonum.
Definition: types.h:876
-
-
-
#define type_of(obj)
Definition: types.h:91
-
#define make_double(n, v)
Definition: types.h:883
-
Deprecated - boxed integers.
Definition: types.h:807
-
#define bignum_value(x)
Definition: types.h:911
-
-
+
Value:
+
Cyc_check_num(data, z); \
+
+
+
+
+
+
+
} else { \
+
+
} \
+
return_closcall1(data, cont, &d)
+
Extract double and pass it to continuation cont
+
+@ integer_tag
Definition: types.h:61
+
+
+#define bignum_value(x)
Definition: types.h:913
+Deprecated - boxed integers.
Definition: types.h:808
+#define make_double(n, v)
Definition: types.h:884
+#define type_of(obj)
Definition: types.h:92
+@ bignum_tag
Definition: types.h:62
+Double-precision floating point type, also known as a flonum.
Definition: types.h:877
diff --git a/c-api/group__prim__num_gaeda2c944c31a06a8aa4077f7ccbd9aba.html b/c-api/group__prim__num_gaeda2c944c31a06a8aa4077f7ccbd9aba.html
index 51914041..fc908a40 100644
--- a/c-api/group__prim__num_gaeda2c944c31a06a8aa4077f7ccbd9aba.html
+++ b/c-api/group__prim__num_gaeda2c944c31a06a8aa4077f7ccbd9aba.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_expt
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -176,7 +180,7 @@ $(function() {
diff --git a/c-api/group__prim__num_gaee13236bbb1c172eca097e9883a9bf6f.html b/c-api/group__prim__num_gaee13236bbb1c172eca097e9883a9bf6f.html
index 633af1cf..99dad60c 100644
--- a/c-api/group__prim__num_gaee13236bbb1c172eca097e9883a9bf6f.html
+++ b/c-api/group__prim__num_gaee13236bbb1c172eca097e9883a9bf6f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_num_eq_op
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -170,7 +174,7 @@ $(function() {
diff --git a/c-api/group__prim__num_gaef014a44b3bab77c63eb4209cf86c64f.html b/c-api/group__prim__num_gaef014a44b3bab77c63eb4209cf86c64f.html
index 4406741c..8cbdc972 100644
--- a/c-api/group__prim__num_gaef014a44b3bab77c63eb4209cf86c64f.html
+++ b/c-api/group__prim__num_gaef014a44b3bab77c63eb4209cf86c64f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_bit_set
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -170,7 +174,7 @@ $(function() {
diff --git a/c-api/group__prim__num_gaefe7ca3cd131eea621b34d76da328b17.html b/c-api/group__prim__num_gaefe7ca3cd131eea621b34d76da328b17.html
index d87978ac..4a564fcb 100644
--- a/c-api/group__prim__num_gaefe7ca3cd131eea621b34d76da328b17.html
+++ b/c-api/group__prim__num_gaefe7ca3cd131eea621b34d76da328b17.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_div
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_num_lt_op
Cyc_num_lte
Cyc_num_lte_op
+
Cyc_num_op_args
Cyc_num_op_va_list
Cyc_number2string2
Cyc_remainder
@@ -182,7 +186,7 @@ $(function() {
diff --git a/c-api/group__prim__num_gafcd285cb71b785ae7f17832b5fb4fef8.html b/c-api/group__prim__num_gafcd285cb71b785ae7f17832b5fb4fef8.html
index b9e19678..01c72ab7 100644
--- a/c-api/group__prim__num_gafcd285cb71b785ae7f17832b5fb4fef8.html
+++ b/c-api/group__prim__num_gafcd285cb71b785ae7f17832b5fb4fef8.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_num_lt
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
+
+/* @license-end */
@@ -343,7 +346,7 @@ Variables
diff --git a/c-api/group__prim__obj_ga007404f965b0ba017c1424d7b8c1b996.html b/c-api/group__prim__obj_ga007404f965b0ba017c1424d7b8c1b996.html
index 4cf2388a..a9d274ac 100644
--- a/c-api/group__prim__obj_ga007404f965b0ba017c1424d7b8c1b996.html
+++ b/c-api/group__prim__obj_ga007404f965b0ba017c1424d7b8c1b996.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_Cyc_91macro_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga00be32b7b3d89860f509706992b095ba.html b/c-api/group__prim__obj_ga00be32b7b3d89860f509706992b095ba.html
index fbefdedb..08813985 100644
--- a/c-api/group__prim__obj_ga00be32b7b3d89860f509706992b095ba.html
+++ b/c-api/group__prim__obj_ga00be32b7b3d89860f509706992b095ba.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cdaddr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga0948dcc8d52356123472b668c2d063f8.html b/c-api/group__prim__obj_ga0948dcc8d52356123472b668c2d063f8.html
index 866b155c..5d896785 100644
--- a/c-api/group__prim__obj_ga0948dcc8d52356123472b668c2d063f8.html
+++ b/c-api/group__prim__obj_ga0948dcc8d52356123472b668c2d063f8.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_Cyc_91opaque_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga0a8d9e767cbecf23eb0a87203d33bd73.html b/c-api/group__prim__obj_ga0a8d9e767cbecf23eb0a87203d33bd73.html
index 8493ef52..c94c2611 100644
--- a/c-api/group__prim__obj_ga0a8d9e767cbecf23eb0a87203d33bd73.html
+++ b/c-api/group__prim__obj_ga0a8d9e767cbecf23eb0a87203d33bd73.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_symbol_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga0aecab19cf67c472be481705735e91f7.html b/c-api/group__prim__obj_ga0aecab19cf67c472be481705735e91f7.html
index 7f08bddb..bd1ec605 100644
--- a/c-api/group__prim__obj_ga0aecab19cf67c472be481705735e91f7.html
+++ b/c-api/group__prim__obj_ga0aecab19cf67c472be481705735e91f7.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cdddar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga0de384e5682081e90495cc55c115ca41.html b/c-api/group__prim__obj_ga0de384e5682081e90495cc55c115ca41.html
index c85545b7..14f0c3b1 100644
--- a/c-api/group__prim__obj_ga0de384e5682081e90495cc55c115ca41.html
+++ b/c-api/group__prim__obj_ga0de384e5682081e90495cc55c115ca41.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_delete_91file
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga0df86a9934e193aa7236d1805d33cbe3.html b/c-api/group__prim__obj_ga0df86a9934e193aa7236d1805d33cbe3.html
index 34b7e23c..ad2cfbd7 100644
--- a/c-api/group__prim__obj_ga0df86a9934e193aa7236d1805d33cbe3.html
+++ b/c-api/group__prim__obj_ga0df86a9934e193aa7236d1805d33cbe3.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive__87
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga0f6942bd23192ae93c0256832f79b366.html b/c-api/group__prim__obj_ga0f6942bd23192ae93c0256832f79b366.html
index eff42fb0..a33b6bbf 100644
--- a/c-api/group__prim__obj_ga0f6942bd23192ae93c0256832f79b366.html
+++ b/c-api/group__prim__obj_ga0f6942bd23192ae93c0256832f79b366.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_apply
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga117b405798b9cee725a5dd40d0590d6b.html b/c-api/group__prim__obj_ga117b405798b9cee725a5dd40d0590d6b.html
index af2e9b34..c48d6fb7 100644
--- a/c-api/group__prim__obj_ga117b405798b9cee725a5dd40d0590d6b.html
+++ b/c-api/group__prim__obj_ga117b405798b9cee725a5dd40d0590d6b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_Cyc_91spawn_91thread_67
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga12c8833b3c6329ef68c47ca0aeb20e47.html b/c-api/group__prim__obj_ga12c8833b3c6329ef68c47ca0aeb20e47.html
index b416057d..b8e6f26b 100644
--- a/c-api/group__prim__obj_ga12c8833b3c6329ef68c47ca0aeb20e47.html
+++ b/c-api/group__prim__obj_ga12c8833b3c6329ef68c47ca0aeb20e47.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_caddar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga13a9c2fdce70f74dbf13afa8233f7c0e.html b/c-api/group__prim__obj_ga13a9c2fdce70f74dbf13afa8233f7c0e.html
index 2c56445a..cd05088b 100644
--- a/c-api/group__prim__obj_ga13a9c2fdce70f74dbf13afa8233f7c0e.html
+++ b/c-api/group__prim__obj_ga13a9c2fdce70f74dbf13afa8233f7c0e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_bytevector_91length
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga16166cbc719065c4044bcf5db218dd91.html b/c-api/group__prim__obj_ga16166cbc719065c4044bcf5db218dd91.html
index 890efb10..0dd8f910 100644
--- a/c-api/group__prim__obj_ga16166cbc719065c4044bcf5db218dd91.html
+++ b/c-api/group__prim__obj_ga16166cbc719065c4044bcf5db218dd91.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_null_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga165bdb39f16eed56002984692b4317ee.html b/c-api/group__prim__obj_ga165bdb39f16eed56002984692b4317ee.html
index 702b5012..dddafde8 100644
--- a/c-api/group__prim__obj_ga165bdb39f16eed56002984692b4317ee.html
+++ b/c-api/group__prim__obj_ga165bdb39f16eed56002984692b4317ee.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_command_91line_91arguments
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga186d6a28df129f8d510bd53f6defc50d.html b/c-api/group__prim__obj_ga186d6a28df129f8d510bd53f6defc50d.html
index 2fce54dc..a095363a 100644
--- a/c-api/group__prim__obj_ga186d6a28df129f8d510bd53f6defc50d.html
+++ b/c-api/group__prim__obj_ga186d6a28df129f8d510bd53f6defc50d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_Cyc_91has_91cycle_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga192c25491d9f803683a5a10aa285a399.html b/c-api/group__prim__obj_ga192c25491d9f803683a5a10aa285a399.html
index ca04c9a2..48a9d043 100644
--- a/c-api/group__prim__obj_ga192c25491d9f803683a5a10aa285a399.html
+++ b/c-api/group__prim__obj_ga192c25491d9f803683a5a10aa285a399.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_open_91binary_91output_91file
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga1ab9f13253c61847bf61025ecf9badbf.html b/c-api/group__prim__obj_ga1ab9f13253c61847bf61025ecf9badbf.html
index 6115b5f2..d174e3ca 100644
--- a/c-api/group__prim__obj_ga1ab9f13253c61847bf61025ecf9badbf.html
+++ b/c-api/group__prim__obj_ga1ab9f13253c61847bf61025ecf9badbf.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_caadr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga1c5b5dfbb3c7d09862e3c27e6a82e1f5.html b/c-api/group__prim__obj_ga1c5b5dfbb3c7d09862e3c27e6a82e1f5.html
index 6a0beb91..6643e23d 100644
--- a/c-api/group__prim__obj_ga1c5b5dfbb3c7d09862e3c27e6a82e1f5.html
+++ b/c-api/group__prim__obj_ga1c5b5dfbb3c7d09862e3c27e6a82e1f5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cdadar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga20de4bbc351ab40d0939e0844dedd6f1.html b/c-api/group__prim__obj_ga20de4bbc351ab40d0939e0844dedd6f1.html
index a99ddd12..6f6c2efb 100644
--- a/c-api/group__prim__obj_ga20de4bbc351ab40d0939e0844dedd6f1.html
+++ b/c-api/group__prim__obj_ga20de4bbc351ab40d0939e0844dedd6f1.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_eqv_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga20e2b8ea2fa308d501a5ef5bd93184f7.html b/c-api/group__prim__obj_ga20e2b8ea2fa308d501a5ef5bd93184f7.html
index 45b9ffc4..4f8ec0ec 100644
--- a/c-api/group__prim__obj_ga20e2b8ea2fa308d501a5ef5bd93184f7.html
+++ b/c-api/group__prim__obj_ga20e2b8ea2fa308d501a5ef5bd93184f7.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_caaadr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga20e35dd371587aa93a6fc228b19d8161.html b/c-api/group__prim__obj_ga20e35dd371587aa93a6fc228b19d8161.html
index 05018b24..5c747db0 100644
--- a/c-api/group__prim__obj_ga20e35dd371587aa93a6fc228b19d8161.html
+++ b/c-api/group__prim__obj_ga20e35dd371587aa93a6fc228b19d8161.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive__75halt
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga2115e2bcf83756a363b32dcd5efbfd06.html b/c-api/group__prim__obj_ga2115e2bcf83756a363b32dcd5efbfd06.html
index 6fb1a0c3..34342454 100644
--- a/c-api/group__prim__obj_ga2115e2bcf83756a363b32dcd5efbfd06.html
+++ b/c-api/group__prim__obj_ga2115e2bcf83756a363b32dcd5efbfd06.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_char_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga21696f080abc602291265792209c2505.html b/c-api/group__prim__obj_ga21696f080abc602291265792209c2505.html
index 31a7d1ee..fbe54ada 100644
--- a/c-api/group__prim__obj_ga21696f080abc602291265792209c2505.html
+++ b/c-api/group__prim__obj_ga21696f080abc602291265792209c2505.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cons
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga2341757b8222a480a4be55e60ea4c516.html b/c-api/group__prim__obj_ga2341757b8222a480a4be55e60ea4c516.html
index 6fc8c905..e35a0594 100644
--- a/c-api/group__prim__obj_ga2341757b8222a480a4be55e60ea4c516.html
+++ b/c-api/group__prim__obj_ga2341757b8222a480a4be55e60ea4c516.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_file_91exists_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga23c591e43ea024e9721119796652ca18.html b/c-api/group__prim__obj_ga23c591e43ea024e9721119796652ca18.html
index 211c4caf..76391a19 100644
--- a/c-api/group__prim__obj_ga23c591e43ea024e9721119796652ca18.html
+++ b/c-api/group__prim__obj_ga23c591e43ea024e9721119796652ca18.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_real_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga25629664a684742f45f2240e4f617899.html b/c-api/group__prim__obj_ga25629664a684742f45f2240e4f617899.html
index cf485a30..22d84226 100644
--- a/c-api/group__prim__obj_ga25629664a684742f45f2240e4f617899.html
+++ b/c-api/group__prim__obj_ga25629664a684742f45f2240e4f617899.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cddr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga27b1e6a552685cce4021d9b267922624.html b/c-api/group__prim__obj_ga27b1e6a552685cce4021d9b267922624.html
index 3c1cf39f..43dc52f1 100644
--- a/c-api/group__prim__obj_ga27b1e6a552685cce4021d9b267922624.html
+++ b/c-api/group__prim__obj_ga27b1e6a552685cce4021d9b267922624.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_Cyc_91set_91cvar_67
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga29e7c838a0cb38ffbc074511f99f4996.html b/c-api/group__prim__obj_ga29e7c838a0cb38ffbc074511f99f4996.html
index f10f1410..a860c3aa 100644
--- a/c-api/group__prim__obj_ga29e7c838a0cb38ffbc074511f99f4996.html
+++ b/c-api/group__prim__obj_ga29e7c838a0cb38ffbc074511f99f4996.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_eof_91object_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga30a3133ac13f44d5ad5768def3157ef8.html b/c-api/group__prim__obj_ga30a3133ac13f44d5ad5768def3157ef8.html
index 3cde65cb..14ce3996 100644
--- a/c-api/group__prim__obj_ga30a3133ac13f44d5ad5768def3157ef8.html
+++ b/c-api/group__prim__obj_ga30a3133ac13f44d5ad5768def3157ef8.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_string_91_125symbol
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga31afacab301faf4b2d5aa83215f49f6d.html b/c-api/group__prim__obj_ga31afacab301faf4b2d5aa83215f49f6d.html
index fd52bea5..7ffab7e9 100644
--- a/c-api/group__prim__obj_ga31afacab301faf4b2d5aa83215f49f6d.html
+++ b/c-api/group__prim__obj_ga31afacab301faf4b2d5aa83215f49f6d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cadaar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga3228507c2e185c55291c8578d6beac42.html b/c-api/group__prim__obj_ga3228507c2e185c55291c8578d6beac42.html
index 1fb1fb7d..59a4ddf2 100644
--- a/c-api/group__prim__obj_ga3228507c2e185c55291c8578d6beac42.html
+++ b/c-api/group__prim__obj_ga3228507c2e185c55291c8578d6beac42.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_procedure_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga338aa6d2c5d741547bfa80a111b5da76.html b/c-api/group__prim__obj_ga338aa6d2c5d741547bfa80a111b5da76.html
index 72a51a57..ed8e4b1f 100644
--- a/c-api/group__prim__obj_ga338aa6d2c5d741547bfa80a111b5da76.html
+++ b/c-api/group__prim__obj_ga338aa6d2c5d741547bfa80a111b5da76.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cadar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga36f6febbcad39c12c4f7bd32eebe917f.html b/c-api/group__prim__obj_ga36f6febbcad39c12c4f7bd32eebe917f.html
index a090b253..605dcc91 100644
--- a/c-api/group__prim__obj_ga36f6febbcad39c12c4f7bd32eebe917f.html
+++ b/c-api/group__prim__obj_ga36f6febbcad39c12c4f7bd32eebe917f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_equal_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga372ee65c01953d8d9c792074c8ca8741.html b/c-api/group__prim__obj_ga372ee65c01953d8d9c792074c8ca8741.html
index 86c64de6..a8a7904f 100644
--- a/c-api/group__prim__obj_ga372ee65c01953d8d9c792074c8ca8741.html
+++ b/c-api/group__prim__obj_ga372ee65c01953d8d9c792074c8ca8741.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_substring
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga383e64a6e83d8a7cd0d004fa7633161f.html b/c-api/group__prim__obj_ga383e64a6e83d8a7cd0d004fa7633161f.html
index 5f51722a..7ad214ea 100644
--- a/c-api/group__prim__obj_ga383e64a6e83d8a7cd0d004fa7633161f.html
+++ b/c-api/group__prim__obj_ga383e64a6e83d8a7cd0d004fa7633161f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_Cyc_91bytevector_91copy
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga396e1ca679d9064a9e5545db664c6027.html b/c-api/group__prim__obj_ga396e1ca679d9064a9e5545db664c6027.html
index 57163fd8..73f260fe 100644
--- a/c-api/group__prim__obj_ga396e1ca679d9064a9e5545db664c6027.html
+++ b/c-api/group__prim__obj_ga396e1ca679d9064a9e5545db664c6027.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_caddr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga3a0676ff5b215f74b34edba10b56ca41.html b/c-api/group__prim__obj_ga3a0676ff5b215f74b34edba10b56ca41.html
index 2cd890d1..fdd12cde 100644
--- a/c-api/group__prim__obj_ga3a0676ff5b215f74b34edba10b56ca41.html
+++ b/c-api/group__prim__obj_ga3a0676ff5b215f74b34edba10b56ca41.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cadddr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga3b9c2f07626057e607380414d0d4b050.html b/c-api/group__prim__obj_ga3b9c2f07626057e607380414d0d4b050.html
index 66417df3..405948b0 100644
--- a/c-api/group__prim__obj_ga3b9c2f07626057e607380414d0d4b050.html
+++ b/c-api/group__prim__obj_ga3b9c2f07626057e607380414d0d4b050.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_Cyc_91string_91_125utf8
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga3ed2cd44e2ba5cf27210a5d21d5bb022.html b/c-api/group__prim__obj_ga3ed2cd44e2ba5cf27210a5d21d5bb022.html
index d0421582..c011c9d4 100644
--- a/c-api/group__prim__obj_ga3ed2cd44e2ba5cf27210a5d21d5bb022.html
+++ b/c-api/group__prim__obj_ga3ed2cd44e2ba5cf27210a5d21d5bb022.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_Cyc_91write
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga40e49699dc074fafca7c265a0da093cf.html b/c-api/group__prim__obj_ga40e49699dc074fafca7c265a0da093cf.html
index 71b3ebc6..94d4053e 100644
--- a/c-api/group__prim__obj_ga40e49699dc074fafca7c265a0da093cf.html
+++ b/c-api/group__prim__obj_ga40e49699dc074fafca7c265a0da093cf.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_Cyc_91end_91thread_67
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga419567690c4831b426739c8e15862a79.html b/c-api/group__prim__obj_ga419567690c4831b426739c8e15862a79.html
index a0178095..4de6a284 100644
--- a/c-api/group__prim__obj_ga419567690c4831b426739c8e15862a79.html
+++ b/c-api/group__prim__obj_ga419567690c4831b426739c8e15862a79.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cdaaar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga47756444a64cfd603181d9a6ef3f6f04.html b/c-api/group__prim__obj_ga47756444a64cfd603181d9a6ef3f6f04.html
index 4ea35d35..268a7a7b 100644
--- a/c-api/group__prim__obj_ga47756444a64cfd603181d9a6ef3f6f04.html
+++ b/c-api/group__prim__obj_ga47756444a64cfd603181d9a6ef3f6f04.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_Cyc_91cvar_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga482a8c5afedb0b5074b9ebb1c49553eb.html b/c-api/group__prim__obj_ga482a8c5afedb0b5074b9ebb1c49553eb.html
index d028840b..01d52056 100644
--- a/c-api/group__prim__obj_ga482a8c5afedb0b5074b9ebb1c49553eb.html
+++ b/c-api/group__prim__obj_ga482a8c5afedb0b5074b9ebb1c49553eb.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_vector_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga489496bf22301eb99095d1e6d6e90d47.html b/c-api/group__prim__obj_ga489496bf22301eb99095d1e6d6e90d47.html
index 68f8134d..15d6ef52 100644
--- a/c-api/group__prim__obj_ga489496bf22301eb99095d1e6d6e90d47.html
+++ b/c-api/group__prim__obj_ga489496bf22301eb99095d1e6d6e90d47.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cdddr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga48fb7459ef1b37fdc5cbf8b01efa0d46.html b/c-api/group__prim__obj_ga48fb7459ef1b37fdc5cbf8b01efa0d46.html
index 92f8428d..428e2408 100644
--- a/c-api/group__prim__obj_ga48fb7459ef1b37fdc5cbf8b01efa0d46.html
+++ b/c-api/group__prim__obj_ga48fb7459ef1b37fdc5cbf8b01efa0d46.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_number_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga4afda640e1b01cdb2bfb09d4fa98b8d9.html b/c-api/group__prim__obj_ga4afda640e1b01cdb2bfb09d4fa98b8d9.html
index 51921cb5..10f31640 100644
--- a/c-api/group__prim__obj_ga4afda640e1b01cdb2bfb09d4fa98b8d9.html
+++ b/c-api/group__prim__obj_ga4afda640e1b01cdb2bfb09d4fa98b8d9.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_read_91char
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga4e0e64a5917526c68489031e47a8c571.html b/c-api/group__prim__obj_ga4e0e64a5917526c68489031e47a8c571.html
index cb330a44..9e008125 100644
--- a/c-api/group__prim__obj_ga4e0e64a5917526c68489031e47a8c571.html
+++ b/c-api/group__prim__obj_ga4e0e64a5917526c68489031e47a8c571.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cell
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga524622acec0008484ca4dd9ecc12d4ee.html b/c-api/group__prim__obj_ga524622acec0008484ca4dd9ecc12d4ee.html
index 780e26bf..9bf8c0d4 100644
--- a/c-api/group__prim__obj_ga524622acec0008484ca4dd9ecc12d4ee.html
+++ b/c-api/group__prim__obj_ga524622acec0008484ca4dd9ecc12d4ee.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_open_91binary_91input_91file
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga55f31788d5956df3bce95b7237e94314.html b/c-api/group__prim__obj_ga55f31788d5956df3bce95b7237e94314.html
index 600c7299..fdef66d1 100644
--- a/c-api/group__prim__obj_ga55f31788d5956df3bce95b7237e94314.html
+++ b/c-api/group__prim__obj_ga55f31788d5956df3bce95b7237e94314.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_Cyc_91get_91cvar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga5683aa55f8c9cb4bee2185c6d98be8d5.html b/c-api/group__prim__obj_ga5683aa55f8c9cb4bee2185c6d98be8d5.html
index e1baeab3..c5f45f06 100644
--- a/c-api/group__prim__obj_ga5683aa55f8c9cb4bee2185c6d98be8d5.html
+++ b/c-api/group__prim__obj_ga5683aa55f8c9cb4bee2185c6d98be8d5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_boolean_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga5ad16ee532bd49357a3519756bb207b7.html b/c-api/group__prim__obj_ga5ad16ee532bd49357a3519756bb207b7.html
index c1a0268c..ee88dd5c 100644
--- a/c-api/group__prim__obj_ga5ad16ee532bd49357a3519756bb207b7.html
+++ b/c-api/group__prim__obj_ga5ad16ee532bd49357a3519756bb207b7.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_bytevector_91u8_91set_67
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga5c7d8236b7d1b61e5e9f01fb4d3811d4.html b/c-api/group__prim__obj_ga5c7d8236b7d1b61e5e9f01fb4d3811d4.html
index 78e3f4c7..1ff6d324 100644
--- a/c-api/group__prim__obj_ga5c7d8236b7d1b61e5e9f01fb4d3811d4.html
+++ b/c-api/group__prim__obj_ga5c7d8236b7d1b61e5e9f01fb4d3811d4.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cddar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga5e64636adec4aa6c97a037e50bf1cf00.html b/c-api/group__prim__obj_ga5e64636adec4aa6c97a037e50bf1cf00.html
index 922f5f2e..5415c1cd 100644
--- a/c-api/group__prim__obj_ga5e64636adec4aa6c97a037e50bf1cf00.html
+++ b/c-api/group__prim__obj_ga5e64636adec4aa6c97a037e50bf1cf00.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_caaar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga6011d3b81d70fc1db63e15547d73592d.html b/c-api/group__prim__obj_ga6011d3b81d70fc1db63e15547d73592d.html
index bcf6c4da..118d61db 100644
--- a/c-api/group__prim__obj_ga6011d3b81d70fc1db63e15547d73592d.html
+++ b/c-api/group__prim__obj_ga6011d3b81d70fc1db63e15547d73592d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_call_95cc
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga6409254309835d9b1d20e2d05f484bb8.html b/c-api/group__prim__obj_ga6409254309835d9b1d20e2d05f484bb8.html
index f5d8b5f7..500b3491 100644
--- a/c-api/group__prim__obj_ga6409254309835d9b1d20e2d05f484bb8.html
+++ b/c-api/group__prim__obj_ga6409254309835d9b1d20e2d05f484bb8.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_memq
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga6701bd3d243bec8a587c0a8771962954.html b/c-api/group__prim__obj_ga6701bd3d243bec8a587c0a8771962954.html
index 7a8b53c9..3b201d00 100644
--- a/c-api/group__prim__obj_ga6701bd3d243bec8a587c0a8771962954.html
+++ b/c-api/group__prim__obj_ga6701bd3d243bec8a587c0a8771962954.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_close_91input_91port
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga69098d8089cbb754ab4b94abeeaaece7.html b/c-api/group__prim__obj_ga69098d8089cbb754ab4b94abeeaaece7.html
index 6cbe5056..b066b481 100644
--- a/c-api/group__prim__obj_ga69098d8089cbb754ab4b94abeeaaece7.html
+++ b/c-api/group__prim__obj_ga69098d8089cbb754ab4b94abeeaaece7.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_Cyc_91display
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga6941eb540a4ba1b18c130438f14101cc.html b/c-api/group__prim__obj_ga6941eb540a4ba1b18c130438f14101cc.html
index f646c6b1..c2e72c60 100644
--- a/c-api/group__prim__obj_ga6941eb540a4ba1b18c130438f14101cc.html
+++ b/c-api/group__prim__obj_ga6941eb540a4ba1b18c130438f14101cc.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_exit
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga6c245eef40cb8729be6f3527fde04548.html b/c-api/group__prim__obj_ga6c245eef40cb8729be6f3527fde04548.html
index 67406a02..cae3851a 100644
--- a/c-api/group__prim__obj_ga6c245eef40cb8729be6f3527fde04548.html
+++ b/c-api/group__prim__obj_ga6c245eef40cb8729be6f3527fde04548.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_caaddr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga6ccb8750113f168d727f46b8f02c2274.html b/c-api/group__prim__obj_ga6ccb8750113f168d727f46b8f02c2274.html
index 4e6918dc..e2175a44 100644
--- a/c-api/group__prim__obj_ga6ccb8750113f168d727f46b8f02c2274.html
+++ b/c-api/group__prim__obj_ga6ccb8750113f168d727f46b8f02c2274.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_vector_91length
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga70f023c23a8ab8534e47ed10f39a8e80.html b/c-api/group__prim__obj_ga70f023c23a8ab8534e47ed10f39a8e80.html
index 6a88c633..b77fb37a 100644
--- a/c-api/group__prim__obj_ga70f023c23a8ab8534e47ed10f39a8e80.html
+++ b/c-api/group__prim__obj_ga70f023c23a8ab8534e47ed10f39a8e80.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_symbol_91_125string
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga7228c7018fa837696e0e8d22f3d0dc9c.html b/c-api/group__prim__obj_ga7228c7018fa837696e0e8d22f3d0dc9c.html
index 42a02fe2..bf088141 100644
--- a/c-api/group__prim__obj_ga7228c7018fa837696e0e8d22f3d0dc9c.html
+++ b/c-api/group__prim__obj_ga7228c7018fa837696e0e8d22f3d0dc9c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cadadr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga75daaedba7239569666a5208f54589fe.html b/c-api/group__prim__obj_ga75daaedba7239569666a5208f54589fe.html
index cb03a701..295b1ad7 100644
--- a/c-api/group__prim__obj_ga75daaedba7239569666a5208f54589fe.html
+++ b/c-api/group__prim__obj_ga75daaedba7239569666a5208f54589fe.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_Cyc_91flush_91output_91port
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga760e56ad4f0a163fa1c03e91ee2de97b.html b/c-api/group__prim__obj_ga760e56ad4f0a163fa1c03e91ee2de97b.html
index 12d21680..b4547c83 100644
--- a/c-api/group__prim__obj_ga760e56ad4f0a163fa1c03e91ee2de97b.html
+++ b/c-api/group__prim__obj_ga760e56ad4f0a163fa1c03e91ee2de97b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_caar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga763e6ff532f3fcc737c724703be5c618.html b/c-api/group__prim__obj_ga763e6ff532f3fcc737c724703be5c618.html
index 810166b3..b68d0777 100644
--- a/c-api/group__prim__obj_ga763e6ff532f3fcc737c724703be5c618.html
+++ b/c-api/group__prim__obj_ga763e6ff532f3fcc737c724703be5c618.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cddadr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga7765c6663c6196a3bbdcacc7ccf70f03.html b/c-api/group__prim__obj_ga7765c6663c6196a3bbdcacc7ccf70f03.html
index 91d80e2c..462405fb 100644
--- a/c-api/group__prim__obj_ga7765c6663c6196a3bbdcacc7ccf70f03.html
+++ b/c-api/group__prim__obj_ga7765c6663c6196a3bbdcacc7ccf70f03.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_peek_91char
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga77c615aad51d27df0d2d693d8c34ee47.html b/c-api/group__prim__obj_ga77c615aad51d27df0d2d693d8c34ee47.html
index ac50f323..83f46691 100644
--- a/c-api/group__prim__obj_ga77c615aad51d27df0d2d693d8c34ee47.html
+++ b/c-api/group__prim__obj_ga77c615aad51d27df0d2d693d8c34ee47.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_bytevector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga79b9d3f380cb74dae3724afece2b4f41.html b/c-api/group__prim__obj_ga79b9d3f380cb74dae3724afece2b4f41.html
index 27ac1fb5..7e61ac8a 100644
--- a/c-api/group__prim__obj_ga79b9d3f380cb74dae3724afece2b4f41.html
+++ b/c-api/group__prim__obj_ga79b9d3f380cb74dae3724afece2b4f41.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_Cyc_91utf8_91_125string
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga7a167d15111f47f8601366d5edeaf054.html b/c-api/group__prim__obj_ga7a167d15111f47f8601366d5edeaf054.html
index 9756385d..1ef0bea2 100644
--- a/c-api/group__prim__obj_ga7a167d15111f47f8601366d5edeaf054.html
+++ b/c-api/group__prim__obj_ga7a167d15111f47f8601366d5edeaf054.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_macro_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga7ac9a83a8a2b3f60fac3ef0a16e4315b.html b/c-api/group__prim__obj_ga7ac9a83a8a2b3f60fac3ef0a16e4315b.html
index 749489c8..a92b8a38 100644
--- a/c-api/group__prim__obj_ga7ac9a83a8a2b3f60fac3ef0a16e4315b.html
+++ b/c-api/group__prim__obj_ga7ac9a83a8a2b3f60fac3ef0a16e4315b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive__121_123
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga7c95711c17f77881658783438a6e1c4c.html b/c-api/group__prim__obj_ga7c95711c17f77881658783438a6e1c4c.html
index 2cb33944..6716653d 100644
--- a/c-api/group__prim__obj_ga7c95711c17f77881658783438a6e1c4c.html
+++ b/c-api/group__prim__obj_ga7c95711c17f77881658783438a6e1c4c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cadr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga7ef55faa3519b9f0eb8722368e7a2106.html b/c-api/group__prim__obj_ga7ef55faa3519b9f0eb8722368e7a2106.html
index be54be60..b9195747 100644
--- a/c-api/group__prim__obj_ga7ef55faa3519b9f0eb8722368e7a2106.html
+++ b/c-api/group__prim__obj_ga7ef55faa3519b9f0eb8722368e7a2106.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_vector_91set_67
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga81cbf8f1fe12d11018fa3b9d40eefe4f.html b/c-api/group__prim__obj_ga81cbf8f1fe12d11018fa3b9d40eefe4f.html
index 1ea0ca05..8e69ff0a 100644
--- a/c-api/group__prim__obj_ga81cbf8f1fe12d11018fa3b9d40eefe4f.html
+++ b/c-api/group__prim__obj_ga81cbf8f1fe12d11018fa3b9d40eefe4f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_Cyc_91current_91exception_91handler
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga84decfa06fce46a59ad16760adb25d93.html b/c-api/group__prim__obj_ga84decfa06fce46a59ad16760adb25d93.html
index 3643d145..0cf3ee08 100644
--- a/c-api/group__prim__obj_ga84decfa06fce46a59ad16760adb25d93.html
+++ b/c-api/group__prim__obj_ga84decfa06fce46a59ad16760adb25d93.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_string_91append
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga8d05463e96e079e53d12603fe744aba6.html b/c-api/group__prim__obj_ga8d05463e96e079e53d12603fe744aba6.html
index 4b1eb103..449c5835 100644
--- a/c-api/group__prim__obj_ga8d05463e96e079e53d12603fe744aba6.html
+++ b/c-api/group__prim__obj_ga8d05463e96e079e53d12603fe744aba6.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_port_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga8d0fe52ee40c91cb04924abbc4b179aa.html b/c-api/group__prim__obj_ga8d0fe52ee40c91cb04924abbc4b179aa.html
index 817107c3..1527279d 100644
--- a/c-api/group__prim__obj_ga8d0fe52ee40c91cb04924abbc4b179aa.html
+++ b/c-api/group__prim__obj_ga8d0fe52ee40c91cb04924abbc4b179aa.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_bytevector_91append
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga90a985dee93565d1792740e957baaea3.html b/c-api/group__prim__obj_ga90a985dee93565d1792740e957baaea3.html
index e6e5d956..d139ab01 100644
--- a/c-api/group__prim__obj_ga90a985dee93565d1792740e957baaea3.html
+++ b/c-api/group__prim__obj_ga90a985dee93565d1792740e957baaea3.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_vector_91ref
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga92591e5a15be017494e6addb3d6597f4.html b/c-api/group__prim__obj_ga92591e5a15be017494e6addb3d6597f4.html
index 7a682f3b..72189aa1 100644
--- a/c-api/group__prim__obj_ga92591e5a15be017494e6addb3d6597f4.html
+++ b/c-api/group__prim__obj_ga92591e5a15be017494e6addb3d6597f4.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_caaaar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga928cb2279463b58cd4e36bcedf57e75a.html b/c-api/group__prim__obj_ga928cb2279463b58cd4e36bcedf57e75a.html
index 00f52f67..515cedc0 100644
--- a/c-api/group__prim__obj_ga928cb2279463b58cd4e36bcedf57e75a.html
+++ b/c-api/group__prim__obj_ga928cb2279463b58cd4e36bcedf57e75a.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_integer_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga93a7eed512adfa7061d8ec7f28714965.html b/c-api/group__prim__obj_ga93a7eed512adfa7061d8ec7f28714965.html
index 9ac98d17..03b29aa1 100644
--- a/c-api/group__prim__obj_ga93a7eed512adfa7061d8ec7f28714965.html
+++ b/c-api/group__prim__obj_ga93a7eed512adfa7061d8ec7f28714965.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_string_91ref
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga9919673b03056257bd5a57d40de6a948.html b/c-api/group__prim__obj_ga9919673b03056257bd5a57d40de6a948.html
index 3edb0f48..a8b4fe8e 100644
--- a/c-api/group__prim__obj_ga9919673b03056257bd5a57d40de6a948.html
+++ b/c-api/group__prim__obj_ga9919673b03056257bd5a57d40de6a948.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cdaadr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga9aae9c341f6b60ee9a267c07554f0413.html b/c-api/group__prim__obj_ga9aae9c341f6b60ee9a267c07554f0413.html
index ed35fc6f..4c046c61 100644
--- a/c-api/group__prim__obj_ga9aae9c341f6b60ee9a267c07554f0413.html
+++ b/c-api/group__prim__obj_ga9aae9c341f6b60ee9a267c07554f0413.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_system
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga9b4ecc45e9b8a5122739279352b2f1d3.html b/c-api/group__prim__obj_ga9b4ecc45e9b8a5122739279352b2f1d3.html
index ae9104d3..47203c64 100644
--- a/c-api/group__prim__obj_ga9b4ecc45e9b8a5122739279352b2f1d3.html
+++ b/c-api/group__prim__obj_ga9b4ecc45e9b8a5122739279352b2f1d3.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive__95
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga9c0da8b36e7ca3162258cbac917abdda.html b/c-api/group__prim__obj_ga9c0da8b36e7ca3162258cbac917abdda.html
index ebf102f3..cf083a83 100644
--- a/c-api/group__prim__obj_ga9c0da8b36e7ca3162258cbac917abdda.html
+++ b/c-api/group__prim__obj_ga9c0da8b36e7ca3162258cbac917abdda.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_Cyc_91global_91vars
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga9c25bb59ea0984ca7ed9f9c32648ed5c.html b/c-api/group__prim__obj_ga9c25bb59ea0984ca7ed9f9c32648ed5c.html
index 22ea5a55..e01f596e 100644
--- a/c-api/group__prim__obj_ga9c25bb59ea0984ca7ed9f9c32648ed5c.html
+++ b/c-api/group__prim__obj_ga9c25bb59ea0984ca7ed9f9c32648ed5c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_string_91length
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_ga9e629a305cd72ded2b094777b992df72.html b/c-api/group__prim__obj_ga9e629a305cd72ded2b094777b992df72.html
index 74a9c11f..c94978a0 100644
--- a/c-api/group__prim__obj_ga9e629a305cd72ded2b094777b992df72.html
+++ b/c-api/group__prim__obj_ga9e629a305cd72ded2b094777b992df72.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_open_91input_91file
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gaa29f54546de9108583fa7e619d7e15f6.html b/c-api/group__prim__obj_gaa29f54546de9108583fa7e619d7e15f6.html
index 45559b12..71ece70b 100644
--- a/c-api/group__prim__obj_gaa29f54546de9108583fa7e619d7e15f6.html
+++ b/c-api/group__prim__obj_gaa29f54546de9108583fa7e619d7e15f6.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_set_91global_67
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gaa34f06538764cb491abab840b0a44462.html b/c-api/group__prim__obj_gaa34f06538764cb491abab840b0a44462.html
index e178bdbe..71906c82 100644
--- a/c-api/group__prim__obj_gaa34f06538764cb491abab840b0a44462.html
+++ b/c-api/group__prim__obj_gaa34f06538764cb491abab840b0a44462.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_length
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gaa377106e1e7e11fee8aafca695c76c08.html b/c-api/group__prim__obj_gaa377106e1e7e11fee8aafca695c76c08.html
index f564a5e2..27663266 100644
--- a/c-api/group__prim__obj_gaa377106e1e7e11fee8aafca695c76c08.html
+++ b/c-api/group__prim__obj_gaa377106e1e7e11fee8aafca695c76c08.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_string_91set_67
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gaa44b7aa2918b7397d87f6416d31e6350.html b/c-api/group__prim__obj_gaa44b7aa2918b7397d87f6416d31e6350.html
index ec58be9b..38402aac 100644
--- a/c-api/group__prim__obj_gaa44b7aa2918b7397d87f6416d31e6350.html
+++ b/c-api/group__prim__obj_gaa44b7aa2918b7397d87f6416d31e6350.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_open_91output_91file
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gaa5edcf3a66d2fb2ccf9f7aef66b4db0e.html b/c-api/group__prim__obj_gaa5edcf3a66d2fb2ccf9f7aef66b4db0e.html
index ce81c502..80e24870 100644
--- a/c-api/group__prim__obj_gaa5edcf3a66d2fb2ccf9f7aef66b4db0e.html
+++ b/c-api/group__prim__obj_gaa5edcf3a66d2fb2ccf9f7aef66b4db0e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cdaar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gaa6824d687ab62b678da7b7dba64af137.html b/c-api/group__prim__obj_gaa6824d687ab62b678da7b7dba64af137.html
index a0439ce9..6c3ec274 100644
--- a/c-api/group__prim__obj_gaa6824d687ab62b678da7b7dba64af137.html
+++ b/c-api/group__prim__obj_gaa6824d687ab62b678da7b7dba64af137.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive__121
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gaa9f814e6ce8aa515e258b84909411270.html b/c-api/group__prim__obj_gaa9f814e6ce8aa515e258b84909411270.html
index 4bcbc15f..68b973ad 100644
--- a/c-api/group__prim__obj_gaa9f814e6ce8aa515e258b84909411270.html
+++ b/c-api/group__prim__obj_gaa9f814e6ce8aa515e258b84909411270.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive__85
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gaae5751fc8ed82a2f3f6cb5ed1968851e.html b/c-api/group__prim__obj_gaae5751fc8ed82a2f3f6cb5ed1968851e.html
index c8b559b8..44637ce8 100644
--- a/c-api/group__prim__obj_gaae5751fc8ed82a2f3f6cb5ed1968851e.html
+++ b/c-api/group__prim__obj_gaae5751fc8ed82a2f3f6cb5ed1968851e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_integer_91_125char
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gab1aabad904ba851e67c137899fd395c8.html b/c-api/group__prim__obj_gab1aabad904ba851e67c137899fd395c8.html
index cf5b68ab..b04b1c78 100644
--- a/c-api/group__prim__obj_gab1aabad904ba851e67c137899fd395c8.html
+++ b/c-api/group__prim__obj_gab1aabad904ba851e67c137899fd395c8.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive__125_123
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gab3847d41fa16a0a6fdd599c9949e0744.html b/c-api/group__prim__obj_gab3847d41fa16a0a6fdd599c9949e0744.html
index 10ab9f43..154f02f7 100644
--- a/c-api/group__prim__obj_gab3847d41fa16a0a6fdd599c9949e0744.html
+++ b/c-api/group__prim__obj_gab3847d41fa16a0a6fdd599c9949e0744.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_bytevector_91u8_91ref
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gab3db53b3599ccbd7f724822c96f8206b.html b/c-api/group__prim__obj_gab3db53b3599ccbd7f724822c96f8206b.html
index 15fd2aeb..2298e9ab 100644
--- a/c-api/group__prim__obj_gab3db53b3599ccbd7f724822c96f8206b.html
+++ b/c-api/group__prim__obj_gab3db53b3599ccbd7f724822c96f8206b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_number_91_125string
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gab9541b62273132bfe31dfed801760bac.html b/c-api/group__prim__obj_gab9541b62273132bfe31dfed801760bac.html
index db482fd8..7573045f 100644
--- a/c-api/group__prim__obj_gab9541b62273132bfe31dfed801760bac.html
+++ b/c-api/group__prim__obj_gab9541b62273132bfe31dfed801760bac.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive__125
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gab9ba52f8379f8e85365f88401d7cc80a.html b/c-api/group__prim__obj_gab9ba52f8379f8e85365f88401d7cc80a.html
index 5f0a9b94..1161478b 100644
--- a/c-api/group__prim__obj_gab9ba52f8379f8e85365f88401d7cc80a.html
+++ b/c-api/group__prim__obj_gab9ba52f8379f8e85365f88401d7cc80a.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cddaar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gaba6f6df75526ae4983c144668714b278.html b/c-api/group__prim__obj_gaba6f6df75526ae4983c144668714b278.html
index d1b59ea2..f6d25ca8 100644
--- a/c-api/group__prim__obj_gaba6f6df75526ae4983c144668714b278.html
+++ b/c-api/group__prim__obj_gaba6f6df75526ae4983c144668714b278.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_make_91bytevector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gabafcd7a7fe5781c51f126334e74d14d1.html b/c-api/group__prim__obj_gabafcd7a7fe5781c51f126334e74d14d1.html
index 422f8f41..104f749c 100644
--- a/c-api/group__prim__obj_gabafcd7a7fe5781c51f126334e74d14d1.html
+++ b/c-api/group__prim__obj_gabafcd7a7fe5781c51f126334e74d14d1.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cell_91get
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gabf7afa0a04918cb8e063cb53fabdc61f.html b/c-api/group__prim__obj_gabf7afa0a04918cb8e063cb53fabdc61f.html
index f80925f3..6c58346a 100644
--- a/c-api/group__prim__obj_gabf7afa0a04918cb8e063cb53fabdc61f.html
+++ b/c-api/group__prim__obj_gabf7afa0a04918cb8e063cb53fabdc61f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cdr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gac17bfbbbd6a03567c6268ffa2d1e9fda.html b/c-api/group__prim__obj_gac17bfbbbd6a03567c6268ffa2d1e9fda.html
index 389f8e35..a5d4b62d 100644
--- a/c-api/group__prim__obj_gac17bfbbbd6a03567c6268ffa2d1e9fda.html
+++ b/c-api/group__prim__obj_gac17bfbbbd6a03567c6268ffa2d1e9fda.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_memv
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gac6197f167f4c7e5df8b1c67bf0b502e2.html b/c-api/group__prim__obj_gac6197f167f4c7e5df8b1c67bf0b502e2.html
index 385abec0..8ff69e07 100644
--- a/c-api/group__prim__obj_gac6197f167f4c7e5df8b1c67bf0b502e2.html
+++ b/c-api/group__prim__obj_gac6197f167f4c7e5df8b1c67bf0b502e2.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_car
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gac887fe9ce0ac92efd0ecc520d5ece6e6.html b/c-api/group__prim__obj_gac887fe9ce0ac92efd0ecc520d5ece6e6.html
index 68de930e..b2c46675 100644
--- a/c-api/group__prim__obj_gac887fe9ce0ac92efd0ecc520d5ece6e6.html
+++ b/c-api/group__prim__obj_gac887fe9ce0ac92efd0ecc520d5ece6e6.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive__91
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gacbd99202e2d0bb440f31e79c02e4cd14.html b/c-api/group__prim__obj_gacbd99202e2d0bb440f31e79c02e4cd14.html
index 65162278..3bfd1a51 100644
--- a/c-api/group__prim__obj_gacbd99202e2d0bb440f31e79c02e4cd14.html
+++ b/c-api/group__prim__obj_gacbd99202e2d0bb440f31e79c02e4cd14.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cdadr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gad086fca3bd04925c9de37d746384987c.html b/c-api/group__prim__obj_gad086fca3bd04925c9de37d746384987c.html
index cfb36a66..660f0dbd 100644
--- a/c-api/group__prim__obj_gad086fca3bd04925c9de37d746384987c.html
+++ b/c-api/group__prim__obj_gad086fca3bd04925c9de37d746384987c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive__123
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gad1912f35e5802734c2b7e0ed0ef8c55a.html b/c-api/group__prim__obj_gad1912f35e5802734c2b7e0ed0ef8c55a.html
index b77d9b45..64ac2133 100644
--- a/c-api/group__prim__obj_gad1912f35e5802734c2b7e0ed0ef8c55a.html
+++ b/c-api/group__prim__obj_gad1912f35e5802734c2b7e0ed0ef8c55a.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_char_91_125integer
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gad22c0199b5f4c71d11bb72785d53c4c3.html b/c-api/group__prim__obj_gad22c0199b5f4c71d11bb72785d53c4c3.html
index a192e05c..3d99b32e 100644
--- a/c-api/group__prim__obj_gad22c0199b5f4c71d11bb72785d53c4c3.html
+++ b/c-api/group__prim__obj_gad22c0199b5f4c71d11bb72785d53c4c3.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_close_91output_91port
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gad2dd22935f5e5bb1179b2f58fe873ecf.html b/c-api/group__prim__obj_gad2dd22935f5e5bb1179b2f58fe873ecf.html
index f74de794..b6387eea 100644
--- a/c-api/group__prim__obj_gad2dd22935f5e5bb1179b2f58fe873ecf.html
+++ b/c-api/group__prim__obj_gad2dd22935f5e5bb1179b2f58fe873ecf.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_list_91_125string
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gad40ef17482f5dd678560e721d8b272e6.html b/c-api/group__prim__obj_gad40ef17482f5dd678560e721d8b272e6.html
index a30a56f6..80955155 100644
--- a/c-api/group__prim__obj_gad40ef17482f5dd678560e721d8b272e6.html
+++ b/c-api/group__prim__obj_gad40ef17482f5dd678560e721d8b272e6.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_set_91car_67
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gad6f44b61dd64e7817f7db37920318122.html b/c-api/group__prim__obj_gad6f44b61dd64e7817f7db37920318122.html
index 367fbbc6..1f10f297 100644
--- a/c-api/group__prim__obj_gad6f44b61dd64e7817f7db37920318122.html
+++ b/c-api/group__prim__obj_gad6f44b61dd64e7817f7db37920318122.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_Cyc_91read_91line
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gad8a0c4e331b23de2cf638122e86b61fb.html b/c-api/group__prim__obj_gad8a0c4e331b23de2cf638122e86b61fb.html
index dbb8ed3f..7e268fe4 100644
--- a/c-api/group__prim__obj_gad8a0c4e331b23de2cf638122e86b61fb.html
+++ b/c-api/group__prim__obj_gad8a0c4e331b23de2cf638122e86b61fb.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_string_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gad8bf772f61f486a1b9e95511bd692ad2.html b/c-api/group__prim__obj_gad8bf772f61f486a1b9e95511bd692ad2.html
index 643109de..63c3af94 100644
--- a/c-api/group__prim__obj_gad8bf772f61f486a1b9e95511bd692ad2.html
+++ b/c-api/group__prim__obj_gad8bf772f61f486a1b9e95511bd692ad2.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_list_91_125vector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gadb39637dbba187f49ed51f7de172ab83.html b/c-api/group__prim__obj_gadb39637dbba187f49ed51f7de172ab83.html
index c8457e75..618f247e 100644
--- a/c-api/group__prim__obj_gadb39637dbba187f49ed51f7de172ab83.html
+++ b/c-api/group__prim__obj_gadb39637dbba187f49ed51f7de172ab83.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_make_91vector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gadb3ebda58e77d8317afa1e844d48f2ee.html b/c-api/group__prim__obj_gadb3ebda58e77d8317afa1e844d48f2ee.html
index e0a663c3..c10ad209 100644
--- a/c-api/group__prim__obj_gadb3ebda58e77d8317afa1e844d48f2ee.html
+++ b/c-api/group__prim__obj_gadb3ebda58e77d8317afa1e844d48f2ee.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_Cyc_91installation_91dir
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gadf0f850eae5046890378c977e191b6ec.html b/c-api/group__prim__obj_gadf0f850eae5046890378c977e191b6ec.html
index 47484f74..cf4d9f92 100644
--- a/c-api/group__prim__obj_gadf0f850eae5046890378c977e191b6ec.html
+++ b/c-api/group__prim__obj_gadf0f850eae5046890378c977e191b6ec.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_set_91cell_67
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gae225dfd7e37ae13636971c45f01ef2e3.html b/c-api/group__prim__obj_gae225dfd7e37ae13636971c45f01ef2e3.html
index 61ea1cd6..f22cd7dd 100644
--- a/c-api/group__prim__obj_gae225dfd7e37ae13636971c45f01ef2e3.html
+++ b/c-api/group__prim__obj_gae225dfd7e37ae13636971c45f01ef2e3.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_assq
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gae31c9740de97172aa200180066169f04.html b/c-api/group__prim__obj_gae31c9740de97172aa200180066169f04.html
index 8c9d9e40..ca80a9e8 100644
--- a/c-api/group__prim__obj_gae31c9740de97172aa200180066169f04.html
+++ b/c-api/group__prim__obj_gae31c9740de97172aa200180066169f04.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_Cyc_91write_91char
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gae543cba35d78c21c5676977dc04b5b46.html b/c-api/group__prim__obj_gae543cba35d78c21c5676977dc04b5b46.html
index 4ce26ad7..fc8f14cf 100644
--- a/c-api/group__prim__obj_gae543cba35d78c21c5676977dc04b5b46.html
+++ b/c-api/group__prim__obj_gae543cba35d78c21c5676977dc04b5b46.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_caadar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gae791784560401ce8ef7bc1bab0f68a1a.html b/c-api/group__prim__obj_gae791784560401ce8ef7bc1bab0f68a1a.html
index 0cd65ca8..785386c1 100644
--- a/c-api/group__prim__obj_gae791784560401ce8ef7bc1bab0f68a1a.html
+++ b/c-api/group__prim__obj_gae791784560401ce8ef7bc1bab0f68a1a.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_string_91cmp
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gaeee0bd9d9611a497ee7d74c2dca01660.html b/c-api/group__prim__obj_gaeee0bd9d9611a497ee7d74c2dca01660.html
index 7973cc09..608b77f0 100644
--- a/c-api/group__prim__obj_gaeee0bd9d9611a497ee7d74c2dca01660.html
+++ b/c-api/group__prim__obj_gaeee0bd9d9611a497ee7d74c2dca01660.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_pair_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gaf0d081d315338a3807e4598dcf24e777.html b/c-api/group__prim__obj_gaf0d081d315338a3807e4598dcf24e777.html
index 27647d86..cab51de4 100644
--- a/c-api/group__prim__obj_gaf0d081d315338a3807e4598dcf24e777.html
+++ b/c-api/group__prim__obj_gaf0d081d315338a3807e4598dcf24e777.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_bytevector_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gaf40813eeb87482e179c41c549d4a8c5d.html b/c-api/group__prim__obj_gaf40813eeb87482e179c41c549d4a8c5d.html
index 23df6121..9aef5e39 100644
--- a/c-api/group__prim__obj_gaf40813eeb87482e179c41c549d4a8c5d.html
+++ b/c-api/group__prim__obj_gaf40813eeb87482e179c41c549d4a8c5d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_string_91_125number
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gaf9032e9a4118b7f244761b636e4513fb.html b/c-api/group__prim__obj_gaf9032e9a4118b7f244761b636e4513fb.html
index 71d8ca41..5ca6d6f2 100644
--- a/c-api/group__prim__obj_gaf9032e9a4118b7f244761b636e4513fb.html
+++ b/c-api/group__prim__obj_gaf9032e9a4118b7f244761b636e4513fb.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_close_91port
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gaf904233a10063c2fa9c1e1e5c52edfec.html b/c-api/group__prim__obj_gaf904233a10063c2fa9c1e1e5c52edfec.html
index 7e112713..69c40001 100644
--- a/c-api/group__prim__obj_gaf904233a10063c2fa9c1e1e5c52edfec.html
+++ b/c-api/group__prim__obj_gaf904233a10063c2fa9c1e1e5c52edfec.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cddddr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gaf9926cb0135d7bc24f0af554572ef162.html b/c-api/group__prim__obj_gaf9926cb0135d7bc24f0af554572ef162.html
index 2da8b477..833c07d3 100644
--- a/c-api/group__prim__obj_gaf9926cb0135d7bc24f0af554572ef162.html
+++ b/c-api/group__prim__obj_gaf9926cb0135d7bc24f0af554572ef162.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_cdar
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gafb465fde13eb11baf8a4ed679d935d45.html b/c-api/group__prim__obj_gafb465fde13eb11baf8a4ed679d935d45.html
index e08f942c..0c2d6d61 100644
--- a/c-api/group__prim__obj_gafb465fde13eb11baf8a4ed679d935d45.html
+++ b/c-api/group__prim__obj_gafb465fde13eb11baf8a4ed679d935d45.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_Cyc_91compilation_91environment
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gafcbccdaed40dc6af35187a04358c2696.html b/c-api/group__prim__obj_gafcbccdaed40dc6af35187a04358c2696.html
index d97e10c4..3388c0d1 100644
--- a/c-api/group__prim__obj_gafcbccdaed40dc6af35187a04358c2696.html
+++ b/c-api/group__prim__obj_gafcbccdaed40dc6af35187a04358c2696.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_eq_127
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gafd4c134ee010fb02e9dd925e2b08035b.html b/c-api/group__prim__obj_gafd4c134ee010fb02e9dd925e2b08035b.html
index 981071c1..4c6dd7fe 100644
--- a/c-api/group__prim__obj_gafd4c134ee010fb02e9dd925e2b08035b.html
+++ b/c-api/group__prim__obj_gafd4c134ee010fb02e9dd925e2b08035b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_Cyc_91default_91exception_91handler
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gafef496ee95a6c281c7bd5102c22bd007.html b/c-api/group__prim__obj_gafef496ee95a6c281c7bd5102c22bd007.html
index fb950810..2ebf6e0b 100644
--- a/c-api/group__prim__obj_gafef496ee95a6c281c7bd5102c22bd007.html
+++ b/c-api/group__prim__obj_gafef496ee95a6c281c7bd5102c22bd007.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_set_91cdr_67
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__obj_gaff0871708cea89911c63d77084a1eab5.html b/c-api/group__prim__obj_gaff0871708cea89911c63d77084a1eab5.html
index cccef80d..2e571e0c 100644
--- a/c-api/group__prim__obj_gaff0871708cea89911c63d77084a1eab5.html
+++ b/c-api/group__prim__obj_gaff0871708cea89911c63d77084a1eab5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: primitive_assv
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__pairs.html b/c-api/group__prim__pairs.html
index 3d49c9ac..4b1194eb 100644
--- a/c-api/group__prim__pairs.html
+++ b/c-api/group__prim__pairs.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Pairs and lists
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -90,8 +93,6 @@ Functions
object Cyc_length_unsafe (void *d, object l)
-object Cyc_list (void *data, int argc, object cont,...)
-
object Cyc_list2string (void *d, object cont, object lst)
object Cyc_list2vector (void *data, object cont, object l)
@@ -120,7 +121,7 @@ Functions
diff --git a/c-api/group__prim__pairs_ga2138b7829378f0f615af85ce19cee980.html b/c-api/group__prim__pairs_ga2138b7829378f0f615af85ce19cee980.html
index 7fab79a7..0cf8365c 100644
--- a/c-api/group__prim__pairs_ga2138b7829378f0f615af85ce19cee980.html
+++ b/c-api/group__prim__pairs_ga2138b7829378f0f615af85ce19cee980.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_length
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_cdr_unsafe
Cyc_length
Cyc_length_unsafe
-
Cyc_list
Cyc_list2string
Cyc_list2vector
Cyc_set_car
@@ -127,7 +129,7 @@ $(function() {
diff --git a/c-api/group__prim__pairs_ga2f2ba976a030f66c064a2fc8e4cb355b.html b/c-api/group__prim__pairs_ga2f2ba976a030f66c064a2fc8e4cb355b.html
index 9a860ac1..a689520f 100644
--- a/c-api/group__prim__pairs_ga2f2ba976a030f66c064a2fc8e4cb355b.html
+++ b/c-api/group__prim__pairs_ga2f2ba976a030f66c064a2fc8e4cb355b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: assoc_cdr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_cdr_unsafe
Cyc_length
Cyc_length_unsafe
-
Cyc_list
Cyc_list2string
Cyc_list2vector
Cyc_set_car
@@ -134,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__pairs_ga3bcaf441e9166800c65781a2aba79876.html b/c-api/group__prim__pairs_ga3bcaf441e9166800c65781a2aba79876.html
index f2e4a8af..c0cca38f 100644
--- a/c-api/group__prim__pairs_ga3bcaf441e9166800c65781a2aba79876.html
+++ b/c-api/group__prim__pairs_ga3bcaf441e9166800c65781a2aba79876.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_list2vector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_cdr_unsafe
Cyc_length
Cyc_length_unsafe
-
Cyc_list
Cyc_list2string
Cyc_list2vector
Cyc_set_car
@@ -133,7 +135,7 @@ $(function() {
diff --git a/c-api/group__prim__pairs_ga3fc523c19995497dd0ee68fc2c914e1f.html b/c-api/group__prim__pairs_ga3fc523c19995497dd0ee68fc2c914e1f.html
index d534dc35..72a01cee 100644
--- a/c-api/group__prim__pairs_ga3fc523c19995497dd0ee68fc2c914e1f.html
+++ b/c-api/group__prim__pairs_ga3fc523c19995497dd0ee68fc2c914e1f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_set_cell
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_cdr_unsafe
Cyc_length
Cyc_length_unsafe
-
Cyc_list
Cyc_list2string
Cyc_list2vector
Cyc_set_car
@@ -133,7 +135,7 @@ $(function() {
diff --git a/c-api/group__prim__pairs_ga46d7bc2e884dfd0ed8c390dcf3a9766d.html b/c-api/group__prim__pairs_ga46d7bc2e884dfd0ed8c390dcf3a9766d.html
index 7f7d0c19..69507fdb 100644
--- a/c-api/group__prim__pairs_ga46d7bc2e884dfd0ed8c390dcf3a9766d.html
+++ b/c-api/group__prim__pairs_ga46d7bc2e884dfd0ed8c390dcf3a9766d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: assq
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_cdr_unsafe
Cyc_length
Cyc_length_unsafe
-
Cyc_list
Cyc_list2string
Cyc_list2vector
Cyc_set_car
@@ -133,7 +135,7 @@ $(function() {
diff --git a/c-api/group__prim__pairs_ga4fdbbea5e7dc3214bb62eee2ffc66e10.html b/c-api/group__prim__pairs_ga4fdbbea5e7dc3214bb62eee2ffc66e10.html
index 6514e327..11aa18db 100644
--- a/c-api/group__prim__pairs_ga4fdbbea5e7dc3214bb62eee2ffc66e10.html
+++ b/c-api/group__prim__pairs_ga4fdbbea5e7dc3214bb62eee2ffc66e10.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_set_cdr
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_cdr_unsafe
Cyc_length
Cyc_length_unsafe
-
Cyc_list
Cyc_list2string
Cyc_list2vector
Cyc_set_car
@@ -133,7 +135,7 @@ $(function() {
diff --git a/c-api/group__prim__pairs_ga7c1240c60c4d37daa4c20a322a37923e.html b/c-api/group__prim__pairs_ga7c1240c60c4d37daa4c20a322a37923e.html
index 8b2f6e8e..25260167 100644
--- a/c-api/group__prim__pairs_ga7c1240c60c4d37daa4c20a322a37923e.html
+++ b/c-api/group__prim__pairs_ga7c1240c60c4d37daa4c20a322a37923e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_length_unsafe
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_cdr_unsafe
Cyc_length
Cyc_length_unsafe
-
Cyc_list
Cyc_list2string
Cyc_list2vector
Cyc_set_car
@@ -127,7 +129,7 @@ $(function() {
diff --git a/c-api/group__prim__pairs_ga7f2e0d682e2a311c44f5c93eb1304c46.html b/c-api/group__prim__pairs_ga7f2e0d682e2a311c44f5c93eb1304c46.html
index dcc1b1ce..d02b8f97 100644
--- a/c-api/group__prim__pairs_ga7f2e0d682e2a311c44f5c93eb1304c46.html
+++ b/c-api/group__prim__pairs_ga7f2e0d682e2a311c44f5c93eb1304c46.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_set_car_cps
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_cdr_unsafe
Cyc_length
Cyc_length_unsafe
-
Cyc_list
Cyc_list2string
Cyc_list2vector
Cyc_set_car
@@ -139,7 +141,7 @@ $(function() {
diff --git a/c-api/group__prim__pairs_ga83106de68ac0f250c997da41af6c81fc.html b/c-api/group__prim__pairs_ga83106de68ac0f250c997da41af6c81fc.html
index 8e7a0007..d7e5c0e5 100644
--- a/c-api/group__prim__pairs_ga83106de68ac0f250c997da41af6c81fc.html
+++ b/c-api/group__prim__pairs_ga83106de68ac0f250c997da41af6c81fc.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_cdr_unsafe
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_cdr_unsafe
Cyc_length
Cyc_length_unsafe
-
Cyc_list
Cyc_list2string
Cyc_list2vector
Cyc_set_car
@@ -127,7 +129,7 @@ $(function() {
diff --git a/c-api/group__prim__pairs_ga88ce0ccdca0559e3242d7ffab2f2e284.html b/c-api/group__prim__pairs_ga88ce0ccdca0559e3242d7ffab2f2e284.html
index 4220d44f..56a0015b 100644
--- a/c-api/group__prim__pairs_ga88ce0ccdca0559e3242d7ffab2f2e284.html
+++ b/c-api/group__prim__pairs_ga88ce0ccdca0559e3242d7ffab2f2e284.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_set_cdr_cps
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_cdr_unsafe
Cyc_length
Cyc_length_unsafe
-
Cyc_list
Cyc_list2string
Cyc_list2vector
Cyc_set_car
@@ -139,7 +141,7 @@ $(function() {
diff --git a/c-api/group__prim__pairs_gaa131ca47a0c8fa267ccec851b399e842.html b/c-api/group__prim__pairs_gaa131ca47a0c8fa267ccec851b399e842.html
index 41e7c116..5a4027f0 100644
--- a/c-api/group__prim__pairs_gaa131ca47a0c8fa267ccec851b399e842.html
+++ b/c-api/group__prim__pairs_gaa131ca47a0c8fa267ccec851b399e842.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: memberp
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_cdr_unsafe
Cyc_length
Cyc_length_unsafe
-
Cyc_list
Cyc_list2string
Cyc_list2vector
Cyc_set_car
@@ -133,7 +135,7 @@ $(function() {
diff --git a/c-api/group__prim__pairs_gac69bd9f9fb573b04f9bc5a9d1f554c4d.html b/c-api/group__prim__pairs_gac69bd9f9fb573b04f9bc5a9d1f554c4d.html
index f8b2c987..13ce44d8 100644
--- a/c-api/group__prim__pairs_gac69bd9f9fb573b04f9bc5a9d1f554c4d.html
+++ b/c-api/group__prim__pairs_gac69bd9f9fb573b04f9bc5a9d1f554c4d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_set_car
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_cdr_unsafe
Cyc_length
Cyc_length_unsafe
-
Cyc_list
Cyc_list2string
Cyc_list2vector
Cyc_set_car
@@ -133,7 +135,7 @@ $(function() {
diff --git a/c-api/group__prim__pairs_gad60c5e448cd6caac2e21faca8d010210.html b/c-api/group__prim__pairs_gad60c5e448cd6caac2e21faca8d010210.html
index 59e9fb50..4d315756 100644
--- a/c-api/group__prim__pairs_gad60c5e448cd6caac2e21faca8d010210.html
+++ b/c-api/group__prim__pairs_gad60c5e448cd6caac2e21faca8d010210.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: assoc
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_cdr_unsafe
Cyc_length
Cyc_length_unsafe
-
Cyc_list
Cyc_list2string
Cyc_list2vector
Cyc_set_car
@@ -133,7 +135,7 @@ $(function() {
diff --git a/c-api/group__prim__pairs_gad9431e93500a664b618b47df8d6011ed.html b/c-api/group__prim__pairs_gad9431e93500a664b618b47df8d6011ed.html
index 8eb9dfed..6ccddaf6 100644
--- a/c-api/group__prim__pairs_gad9431e93500a664b618b47df8d6011ed.html
+++ b/c-api/group__prim__pairs_gad9431e93500a664b618b47df8d6011ed.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_list2string
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_cdr_unsafe
Cyc_length
Cyc_length_unsafe
-
Cyc_list
Cyc_list2string
Cyc_list2vector
Cyc_set_car
@@ -133,7 +135,7 @@ $(function() {
diff --git a/c-api/group__prim__pairs_gae5e93b376faa0bba8cdc3802e643be8e.html b/c-api/group__prim__pairs_gae5e93b376faa0bba8cdc3802e643be8e.html
index f314a053..8c9b1b9d 100644
--- a/c-api/group__prim__pairs_gae5e93b376faa0bba8cdc3802e643be8e.html
+++ b/c-api/group__prim__pairs_gae5e93b376faa0bba8cdc3802e643be8e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: memqp
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_cdr_unsafe
Cyc_length
Cyc_length_unsafe
-
Cyc_list
Cyc_list2string
Cyc_list2vector
Cyc_set_car
@@ -133,7 +135,7 @@ $(function() {
diff --git a/c-api/group__prim__pairs_gae6fca9e2331d50113700d5591a1e12f5.html b/c-api/group__prim__pairs_gae6fca9e2331d50113700d5591a1e12f5.html
index ab74cc92..390f0104 100644
--- a/c-api/group__prim__pairs_gae6fca9e2331d50113700d5591a1e12f5.html
+++ b/c-api/group__prim__pairs_gae6fca9e2331d50113700d5591a1e12f5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_car_unsafe
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_cdr_unsafe
Cyc_length
Cyc_length_unsafe
-
Cyc_list
Cyc_list2string
Cyc_list2vector
Cyc_set_car
@@ -127,7 +129,7 @@ $(function() {
diff --git a/c-api/group__prim__pairs_gaf5ceb0f8a5936c02906ef76f31efb87e.html b/c-api/group__prim__pairs_gaf5ceb0f8a5936c02906ef76f31efb87e.html
index 488a9892..738fc601 100644
--- a/c-api/group__prim__pairs_gaf5ceb0f8a5936c02906ef76f31efb87e.html
+++ b/c-api/group__prim__pairs_gaf5ceb0f8a5936c02906ef76f31efb87e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: malloc_make_pair
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
+
+/* @license-end */
@@ -92,8 +95,8 @@ Functions
object Cyc_substring (void *data, object cont, object str, object start, object end)
-object dispatch_string_91append (void *data, int argc, object clo, object cont, object str1,...)
-
+void dispatch_string_91append (void *data, object clo, int _argc, object *args)
+
int octstr2int (const char *str)
@@ -104,7 +107,7 @@ Functions
diff --git a/c-api/group__prim__str_ga1017cda8d076d02560c9746869da1890.html b/c-api/group__prim__str_ga1017cda8d076d02560c9746869da1890.html
index 06fbb0fa..dae72f9e 100644
--- a/c-api/group__prim__str_ga1017cda8d076d02560c9746869da1890.html
+++ b/c-api/group__prim__str_ga1017cda8d076d02560c9746869da1890.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: binstr2int
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -111,7 +114,7 @@ $(function() {
diff --git a/c-api/group__prim__str_ga32e4386da9f2afc5871ce3f085567b3e.html b/c-api/group__prim__str_ga32e4386da9f2afc5871ce3f085567b3e.html
new file mode 100644
index 00000000..65bac73b
--- /dev/null
+++ b/c-api/group__prim__str_ga32e4386da9f2afc5871ce3f085567b3e.html
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+Cyclone Scheme: dispatch_string_91append
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ dispatch_string_91append()
+
+
+
+
+
+ void dispatch_string_91append
+ (
+ void *
+ data ,
+
+
+
+
+ object
+ clo ,
+
+
+
+
+ int
+ _argc ,
+
+
+
+
+ object *
+ args
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/group__prim__str_ga6e2a171f5b625a87db0888e9786bfa12.html b/c-api/group__prim__str_ga6e2a171f5b625a87db0888e9786bfa12.html
index f72b6dbe..43ddb769 100644
--- a/c-api/group__prim__str_ga6e2a171f5b625a87db0888e9786bfa12.html
+++ b/c-api/group__prim__str_ga6e2a171f5b625a87db0888e9786bfa12.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_string2number2_
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -139,7 +142,7 @@ $(function() {
diff --git a/c-api/group__prim__str_ga7d0de4fd19b581ccb403fd14f33df64d.html b/c-api/group__prim__str_ga7d0de4fd19b581ccb403fd14f33df64d.html
index 2ad16d21..b87a7598 100644
--- a/c-api/group__prim__str_ga7d0de4fd19b581ccb403fd14f33df64d.html
+++ b/c-api/group__prim__str_ga7d0de4fd19b581ccb403fd14f33df64d.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_string_byte_length
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -121,7 +124,7 @@ $(function() {
diff --git a/c-api/group__prim__str_ga842120a758f236e46ace16624a630a40.html b/c-api/group__prim__str_ga842120a758f236e46ace16624a630a40.html
index 2f75c238..493d6d1b 100644
--- a/c-api/group__prim__str_ga842120a758f236e46ace16624a630a40.html
+++ b/c-api/group__prim__str_ga842120a758f236e46ace16624a630a40.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: octstr2int
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -111,7 +114,7 @@ $(function() {
diff --git a/c-api/group__prim__str_ga8801813ca9b6d6bb26598025812f5345.html b/c-api/group__prim__str_ga8801813ca9b6d6bb26598025812f5345.html
index c56ca62d..317dcf3c 100644
--- a/c-api/group__prim__str_ga8801813ca9b6d6bb26598025812f5345.html
+++ b/c-api/group__prim__str_ga8801813ca9b6d6bb26598025812f5345.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_string_ref
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -127,7 +130,7 @@ $(function() {
diff --git a/c-api/group__prim__str_gaa76131ee60fae520f86aaf86bcab31c8.html b/c-api/group__prim__str_gaa76131ee60fae520f86aaf86bcab31c8.html
index 3144931b..56818c1a 100644
--- a/c-api/group__prim__str_gaa76131ee60fae520f86aaf86bcab31c8.html
+++ b/c-api/group__prim__str_gaa76131ee60fae520f86aaf86bcab31c8.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_substring
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -139,7 +142,7 @@ $(function() {
diff --git a/c-api/group__prim__str_gaaaa985d72ea10f90227afdbae4ee3166.html b/c-api/group__prim__str_gaaaa985d72ea10f90227afdbae4ee3166.html
index 41259df4..37944eaa 100644
--- a/c-api/group__prim__str_gaaaa985d72ea10f90227afdbae4ee3166.html
+++ b/c-api/group__prim__str_gaaaa985d72ea10f90227afdbae4ee3166.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_string2number_
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -127,7 +130,7 @@ $(function() {
diff --git a/c-api/group__prim__str_gac4690da8a830c9d29951996fd0eebaa2.html b/c-api/group__prim__str_gac4690da8a830c9d29951996fd0eebaa2.html
index ed838cf5..3a92ea79 100644
--- a/c-api/group__prim__str_gac4690da8a830c9d29951996fd0eebaa2.html
+++ b/c-api/group__prim__str_gac4690da8a830c9d29951996fd0eebaa2.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_string_length
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -121,7 +124,7 @@ $(function() {
diff --git a/c-api/group__prim__str_gac912f65377661dad5bd14e18d35fcebc.html b/c-api/group__prim__str_gac912f65377661dad5bd14e18d35fcebc.html
index 62660692..2355a0d9 100644
--- a/c-api/group__prim__str_gac912f65377661dad5bd14e18d35fcebc.html
+++ b/c-api/group__prim__str_gac912f65377661dad5bd14e18d35fcebc.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_string_cmp
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -127,7 +130,7 @@ $(function() {
diff --git a/c-api/group__prim__str_gacd3d3cfaf4eb8accc28cce17beba6dd1.html b/c-api/group__prim__str_gacd3d3cfaf4eb8accc28cce17beba6dd1.html
index dce8f801..82d559b0 100644
--- a/c-api/group__prim__str_gacd3d3cfaf4eb8accc28cce17beba6dd1.html
+++ b/c-api/group__prim__str_gacd3d3cfaf4eb8accc28cce17beba6dd1.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_string_append
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -139,7 +142,7 @@ $(function() {
diff --git a/c-api/group__prim__str_gafd7139cfbcbddc57ba318a8853012c66.html b/c-api/group__prim__str_gafd7139cfbcbddc57ba318a8853012c66.html
index 05bca76b..809b0fc5 100644
--- a/c-api/group__prim__str_gafd7139cfbcbddc57ba318a8853012c66.html
+++ b/c-api/group__prim__str_gafd7139cfbcbddc57ba318a8853012c66.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_string_set
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -133,7 +136,7 @@ $(function() {
diff --git a/c-api/group__prim__sym.html b/c-api/group__prim__sym.html
index 6b49e7dc..06a2883a 100644
--- a/c-api/group__prim__sym.html
+++ b/c-api/group__prim__sym.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Symbols
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -84,7 +87,7 @@ Functions
diff --git a/c-api/group__prim__sym_ga913e06928420d4eb2dae8065274349db.html b/c-api/group__prim__sym_ga913e06928420d4eb2dae8065274349db.html
index 707bdd82..54096392 100644
--- a/c-api/group__prim__sym_ga913e06928420d4eb2dae8065274349db.html
+++ b/c-api/group__prim__sym_ga913e06928420d4eb2dae8065274349db.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_symbol2string
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__sym_gaa7ab20cc4522d36c7e034fa20563ddc5.html b/c-api/group__prim__sym_gaa7ab20cc4522d36c7e034fa20563ddc5.html
index cec3f37c..35e98a29 100644
--- a/c-api/group__prim__sym_gaa7ab20cc4522d36c7e034fa20563ddc5.html
+++ b/c-api/group__prim__sym_gaa7ab20cc4522d36c7e034fa20563ddc5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_string2symbol
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__symtbl.html b/c-api/group__prim__symtbl.html
index ca6e69b4..9c4d3dff 100644
--- a/c-api/group__prim__symtbl.html
+++ b/c-api/group__prim__symtbl.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Symbol table
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -85,7 +88,7 @@ Functions
diff --git a/c-api/group__prim__symtbl_ga4d5b79cc3f9c1f8280f86e7e1dd6ad69.html b/c-api/group__prim__symtbl_ga4d5b79cc3f9c1f8280f86e7e1dd6ad69.html
index b66974d6..11da0498 100644
--- a/c-api/group__prim__symtbl_ga4d5b79cc3f9c1f8280f86e7e1dd6ad69.html
+++ b/c-api/group__prim__symtbl_ga4d5b79cc3f9c1f8280f86e7e1dd6ad69.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: find_or_add_symbol
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__symtbl_ga61730f987c32bd893c34066de93d25f0.html b/c-api/group__prim__symtbl_ga61730f987c32bd893c34066de93d25f0.html
index e055663b..b085274b 100644
--- a/c-api/group__prim__symtbl_ga61730f987c32bd893c34066de93d25f0.html
+++ b/c-api/group__prim__symtbl_ga61730f987c32bd893c34066de93d25f0.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: add_symbol
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__sys.html b/c-api/group__prim__sys.html
index be300464..6c96ca33 100644
--- a/c-api/group__prim__sys.html
+++ b/c-api/group__prim__sys.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: System interface
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -81,8 +84,8 @@ Functions
time_t Cyc_file_last_modified_time (char *path)
-void Cyc_halt (object obj)
-
+void Cyc_halt (void *data, object clo, int argc, object *args)
+
object Cyc_installation_dir (void *data, object cont, object type)
object Cyc_io_delete_file (void *data, object filename)
@@ -106,7 +109,7 @@ Variables
diff --git a/c-api/group__prim__sys_ga0e0f41e7a5b3a5439cd2e5dd3e4e3b92.html b/c-api/group__prim__sys_ga0e0f41e7a5b3a5439cd2e5dd3e4e3b92.html
index 4c4dbb39..024132ce 100644
--- a/c-api/group__prim__sys_ga0e0f41e7a5b3a5439cd2e5dd3e4e3b92.html
+++ b/c-api/group__prim__sys_ga0e0f41e7a5b3a5439cd2e5dd3e4e3b92.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: _cyc_argc
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
+
+/* @license-end */
-
+
+/* @license-end */
-
+
+/* @license-end */
-
+
+/* @license-end */
-
+
+/* @license-end */
-
+
+/* @license-end */
-
+
+/* @license-end */
Cyc_command_line_arguments
Cyc_compilation_environment
Cyc_file_last_modified_time
-
Cyc_halt
+
Cyc_halt
Cyc_installation_dir
Cyc_io_delete_file
Cyc_io_file_exists
@@ -123,7 +126,7 @@ $(function() {
diff --git a/c-api/group__prim__sys_gabf1ec614b3fea1f2c91b343cf7543097.html b/c-api/group__prim__sys_gabf1ec614b3fea1f2c91b343cf7543097.html
new file mode 100644
index 00000000..72615364
--- /dev/null
+++ b/c-api/group__prim__sys_gabf1ec614b3fea1f2c91b343cf7543097.html
@@ -0,0 +1,141 @@
+
+
+
+
+
+
+
+
Cyclone Scheme: Cyc_halt
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ Cyc_halt()
+
+
+
+
+
+ void Cyc_halt
+ (
+ void *
+ data ,
+
+
+
+
+ object
+ clo ,
+
+
+
+
+ int
+ argc ,
+
+
+
+
+ object *
+ args
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/group__prim__sys_gad0d071877269c437ebe31ddc62549572.html b/c-api/group__prim__sys_gad0d071877269c437ebe31ddc62549572.html
index 8aff58ea..203eb365 100644
--- a/c-api/group__prim__sys_gad0d071877269c437ebe31ddc62549572.html
+++ b/c-api/group__prim__sys_gad0d071877269c437ebe31ddc62549572.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_io_delete_file
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
+
+/* @license-end */
-
+
+/* @license-end */
@@ -74,8 +77,8 @@ $(function() {
Functions
void Cyc_end_thread (gc_thread_data *thd)
-void Cyc_exit_thread (gc_thread_data *thd)
-
+void Cyc_exit_thread (void *data, object _, int argc, object *args)
+
object Cyc_spawn_thread (object thunk)
void Cyc_start_trampoline (gc_thread_data *thd)
@@ -92,7 +95,7 @@ Functions
diff --git a/c-api/group__prim__thd_gabac4b73594db7ec21f77316a1b31b826.html b/c-api/group__prim__thd_gabac4b73594db7ec21f77316a1b31b826.html
index 112cf9a0..ddff389a 100644
--- a/c-api/group__prim__thd_gabac4b73594db7ec21f77316a1b31b826.html
+++ b/c-api/group__prim__thd_gabac4b73594db7ec21f77316a1b31b826.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_spawn_thread
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_end_thread
- Cyc_exit_thread
+ Cyc_exit_thread
Cyc_spawn_thread
Cyc_start_trampoline
Cyc_thread_sleep
@@ -105,7 +108,7 @@ $(function() {
diff --git a/c-api/group__prim__thd_gac2d430c43e74c45264ff2d818be56b4e.html b/c-api/group__prim__thd_gac2d430c43e74c45264ff2d818be56b4e.html
new file mode 100644
index 00000000..ad4ce92e
--- /dev/null
+++ b/c-api/group__prim__thd_gac2d430c43e74c45264ff2d818be56b4e.html
@@ -0,0 +1,135 @@
+
+
+
+
+
+
+
+Cyclone Scheme: Cyc_exit_thread
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ Cyc_exit_thread()
+
+
+
+
+
+ void Cyc_exit_thread
+ (
+ void *
+ data ,
+
+
+
+
+ object
+ _ ,
+
+
+
+
+ int
+ argc ,
+
+
+
+
+ object *
+ args
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/group__prim__thd_gadeae0a675fdaf7ffb22077b4b6ab7d7f.html b/c-api/group__prim__thd_gadeae0a675fdaf7ffb22077b4b6ab7d7f.html
index 4bca2fd4..9427a9b8 100644
--- a/c-api/group__prim__thd_gadeae0a675fdaf7ffb22077b4b6ab7d7f.html
+++ b/c-api/group__prim__thd_gadeae0a675fdaf7ffb22077b4b6ab7d7f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_start_trampoline
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_end_thread
- Cyc_exit_thread
+ Cyc_exit_thread
Cyc_spawn_thread
Cyc_start_trampoline
Cyc_thread_sleep
@@ -105,7 +108,7 @@ $(function() {
diff --git a/c-api/group__prim__thd_gaeb545141a3f2345cb4830ffa9a0d4e77.html b/c-api/group__prim__thd_gaeb545141a3f2345cb4830ffa9a0d4e77.html
index 8d7ee12e..2749f244 100644
--- a/c-api/group__prim__thd_gaeb545141a3f2345cb4830ffa9a0d4e77.html
+++ b/c-api/group__prim__thd_gaeb545141a3f2345cb4830ffa9a0d4e77.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_end_thread
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
Cyc_end_thread
- Cyc_exit_thread
+ Cyc_exit_thread
Cyc_spawn_thread
Cyc_start_trampoline
Cyc_thread_sleep
@@ -105,7 +108,7 @@ $(function() {
diff --git a/c-api/group__prim__thd_gaf63ead0309cabbe85042540a794fad21.html b/c-api/group__prim__thd_gaf63ead0309cabbe85042540a794fad21.html
index 762bc25f..303d7b59 100644
--- a/c-api/group__prim__thd_gaf63ead0309cabbe85042540a794fad21.html
+++ b/c-api/group__prim__thd_gaf63ead0309cabbe85042540a794fad21.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_thread_sleep
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
+
+/* @license-end */
@@ -103,7 +106,7 @@ Functions
diff --git a/c-api/group__prim__utf8_ga004f7f3c7f21fdd61cfed88bdc1c2f20.html b/c-api/group__prim__utf8_ga004f7f3c7f21fdd61cfed88bdc1c2f20.html
index 25cc7ff9..2b86abd0 100644
--- a/c-api/group__prim__utf8_ga004f7f3c7f21fdd61cfed88bdc1c2f20.html
+++ b/c-api/group__prim__utf8_ga004f7f3c7f21fdd61cfed88bdc1c2f20.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_utf8_encode_char
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__utf8_ga03d50d398fe997bc0958497ae5e220b6.html b/c-api/group__prim__utf8_ga03d50d398fe997bc0958497ae5e220b6.html
index 2fd0f152..891aa2d8 100644
--- a/c-api/group__prim__utf8_ga03d50d398fe997bc0958497ae5e220b6.html
+++ b/c-api/group__prim__utf8_ga03d50d398fe997bc0958497ae5e220b6.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: CYC_UTF8_ACCEPT
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__utf8_ga72f9c931a78dc754d545c044a05bef2f.html b/c-api/group__prim__utf8_ga72f9c931a78dc754d545c044a05bef2f.html
index b91dbe80..742a0e67 100644
--- a/c-api/group__prim__utf8_ga72f9c931a78dc754d545c044a05bef2f.html
+++ b/c-api/group__prim__utf8_ga72f9c931a78dc754d545c044a05bef2f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_utf8_validate_stream
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__utf8_ga9158b37fabe72056d8e2dac07dc4e039.html b/c-api/group__prim__utf8_ga9158b37fabe72056d8e2dac07dc4e039.html
index 7f1bb5ae..9bc2b581 100644
--- a/c-api/group__prim__utf8_ga9158b37fabe72056d8e2dac07dc4e039.html
+++ b/c-api/group__prim__utf8_ga9158b37fabe72056d8e2dac07dc4e039.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_utf8_count_code_points
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__utf8_gaca8690c116e9e5b16dea0bb8ac52edb3.html b/c-api/group__prim__utf8_gaca8690c116e9e5b16dea0bb8ac52edb3.html
index 67e11a61..5045606b 100644
--- a/c-api/group__prim__utf8_gaca8690c116e9e5b16dea0bb8ac52edb3.html
+++ b/c-api/group__prim__utf8_gaca8690c116e9e5b16dea0bb8ac52edb3.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_utf8_encode
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__utf8_gaddbaec1bb68f1e4198401d0c27308bfa.html b/c-api/group__prim__utf8_gaddbaec1bb68f1e4198401d0c27308bfa.html
index 64b8c625..2a1c5002 100644
--- a/c-api/group__prim__utf8_gaddbaec1bb68f1e4198401d0c27308bfa.html
+++ b/c-api/group__prim__utf8_gaddbaec1bb68f1e4198401d0c27308bfa.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_utf8_validate
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__utf8_gae36b2d3bf5e2f989159fd3e6606a242a.html b/c-api/group__prim__utf8_gae36b2d3bf5e2f989159fd3e6606a242a.html
index 8d034f56..dbbb4343 100644
--- a/c-api/group__prim__utf8_gae36b2d3bf5e2f989159fd3e6606a242a.html
+++ b/c-api/group__prim__utf8_gae36b2d3bf5e2f989159fd3e6606a242a.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: CYC_UTF8_REJECT
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__vec.html b/c-api/group__prim__vec.html
index 5945855c..4d8d5900 100644
--- a/c-api/group__prim__vec.html
+++ b/c-api/group__prim__vec.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Vectors
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -100,7 +103,7 @@ Functions
diff --git a/c-api/group__prim__vec_ga0d61c63cd87cca39f3c867a397c53580.html b/c-api/group__prim__vec_ga0d61c63cd87cca39f3c867a397c53580.html
index bb1240bf..c1944ac9 100644
--- a/c-api/group__prim__vec_ga0d61c63cd87cca39f3c867a397c53580.html
+++ b/c-api/group__prim__vec_ga0d61c63cd87cca39f3c867a397c53580.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_vector_length
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__vec_ga196b56e4388ed0e930b9970bf7d90579.html b/c-api/group__prim__vec_ga196b56e4388ed0e930b9970bf7d90579.html
index aa633410..f339e77e 100644
--- a/c-api/group__prim__vec_ga196b56e4388ed0e930b9970bf7d90579.html
+++ b/c-api/group__prim__vec_ga196b56e4388ed0e930b9970bf7d90579.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_make_vector
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__vec_ga8709ea4ef77836a36758642c3d9565d6.html b/c-api/group__prim__vec_ga8709ea4ef77836a36758642c3d9565d6.html
index c770408d..0f5d3bae 100644
--- a/c-api/group__prim__vec_ga8709ea4ef77836a36758642c3d9565d6.html
+++ b/c-api/group__prim__vec_ga8709ea4ef77836a36758642c3d9565d6.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_vector_set_cps
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__vec_ga8b641b5ba0130f0095e4802a7e8247a2.html b/c-api/group__prim__vec_ga8b641b5ba0130f0095e4802a7e8247a2.html
index a0904db2..4960b7f0 100644
--- a/c-api/group__prim__vec_ga8b641b5ba0130f0095e4802a7e8247a2.html
+++ b/c-api/group__prim__vec_ga8b641b5ba0130f0095e4802a7e8247a2.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_vector_set_unsafe
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__vec_ga924f34356e54d1580b97860613137229.html b/c-api/group__prim__vec_ga924f34356e54d1580b97860613137229.html
index a964ff55..e0950d78 100644
--- a/c-api/group__prim__vec_ga924f34356e54d1580b97860613137229.html
+++ b/c-api/group__prim__vec_ga924f34356e54d1580b97860613137229.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_vector_ref_unsafe
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__vec_gab30b7bfc5f95c69ce8faa501b2c33ea3.html b/c-api/group__prim__vec_gab30b7bfc5f95c69ce8faa501b2c33ea3.html
index 8482b16d..7036386a 100644
--- a/c-api/group__prim__vec_gab30b7bfc5f95c69ce8faa501b2c33ea3.html
+++ b/c-api/group__prim__vec_gab30b7bfc5f95c69ce8faa501b2c33ea3.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_vector_set
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__vec_gac66a0d764445f2dd410a1b5388d3d9eb.html b/c-api/group__prim__vec_gac66a0d764445f2dd410a1b5388d3d9eb.html
index 30985d73..f1ab45b8 100644
--- a/c-api/group__prim__vec_gac66a0d764445f2dd410a1b5388d3d9eb.html
+++ b/c-api/group__prim__vec_gac66a0d764445f2dd410a1b5388d3d9eb.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_vector_set_unsafe_cps
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim__vec_gada07c54aa30b4c8a0786566be5874fbd.html b/c-api/group__prim__vec_gada07c54aa30b4c8a0786566be5874fbd.html
index d0193134..153276d4 100644
--- a/c-api/group__prim__vec_gada07c54aa30b4c8a0786566be5874fbd.html
+++ b/c-api/group__prim__vec_gada07c54aa30b4c8a0786566be5874fbd.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_vector_ref
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/group__prim_ga01f75cb3cc09ef87a145e4f1ec5ac5fa.html b/c-api/group__prim_ga01f75cb3cc09ef87a145e4f1ec5ac5fa.html
new file mode 100644
index 00000000..1c84644f
--- /dev/null
+++ b/c-api/group__prim_ga01f75cb3cc09ef87a145e4f1ec5ac5fa.html
@@ -0,0 +1,174 @@
+
+
+
+
+
+
+
+Cyclone Scheme: load_varargs
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ load_varargs
+
+
+
+
+
+ #define load_varargs
+ (
+
+ var,
+
+
+
+
+
+ args_var,
+
+
+
+
+
+ start,
+
+
+
+
+
+ count
+
+
+
+ )
+
+
+
+
+
Value: list var = ((count) > 0) ? alloca(
sizeof (
pair_type )*(count)) : NULL; \
+
{ \
+
int i; \
+
object tmp; \
+
if ((count) > 0) { \
+
for (i = 0; i < (count); i++) { \
+
tmp = args_var[start + i]; \
+
+
var[i].hdr.grayed = 0; \
+
var[i].hdr.immutable = 0; \
+
+
var[i].pair_car = tmp; \
+
var[i].pair_cdr = (i == ((count)-1)) ? NULL : &var[i + 1]; \
+
} \
+
} \
+
}
+
Variable argument count support
+
This macro is intended to be executed at the top of a function that is passed 'var' as a variable-length argument. 'count' is the number of varargs that were passed. EG:
+C definition: f(object a, ...)
+C call: f(1, 2, 3)
+var: a
+count: 3
+
+
Argument count would need to be passed by the caller of f. Presumably our compiler will compute the difference between the number of required args and the number of provided ones, and pass the difference as 'count'
+
+
+
+
+
+
+
+#define gc_color_red
Definition: types.h:297
+The pair (cons) type.
Definition: types.h:1247
+@ pair_tag
Definition: types.h:64
+
+
+
+
diff --git a/c-api/group__prim_ga26075e97c30bab241fad5cd7bbab5879.html b/c-api/group__prim_ga26075e97c30bab241fad5cd7bbab5879.html
index 4532401d..5b92fbf8 100644
--- a/c-api/group__prim_ga26075e97c30bab241fad5cd7bbab5879.html
+++ b/c-api/group__prim_ga26075e97c30bab241fad5cd7bbab5879.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: global_heap_size
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
global_set_cps_id
global_set_id
global_stack_size
-
load_varargs
+
load_varargs
pack_env_variables
set_env_variables
@@ -112,7 +115,7 @@ $(function() {
diff --git a/c-api/group__prim_ga2fdfd72d226550857adca7795b464c8b.html b/c-api/group__prim_ga2fdfd72d226550857adca7795b464c8b.html
index d3d002ca..262d6048 100644
--- a/c-api/group__prim_ga2fdfd72d226550857adca7795b464c8b.html
+++ b/c-api/group__prim_ga2fdfd72d226550857adca7795b464c8b.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: cell_get
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
global_set_cps_id
global_set_id
global_stack_size
-
load_varargs
+
load_varargs
pack_env_variables
set_env_variables
@@ -116,7 +119,7 @@ $(function() {
diff --git a/c-api/group__prim_ga3a2aef21f17a5d5f7f82591b6b92241f.html b/c-api/group__prim_ga3a2aef21f17a5d5f7f82591b6b92241f.html
index fe1c1c57..423bbf91 100644
--- a/c-api/group__prim_ga3a2aef21f17a5d5f7f82591b6b92241f.html
+++ b/c-api/group__prim_ga3a2aef21f17a5d5f7f82591b6b92241f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_global_set
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
global_set_cps_id
global_set_id
global_stack_size
-
load_varargs
+
load_varargs
pack_env_variables
set_env_variables
@@ -138,7 +141,7 @@ $(function() {
diff --git a/c-api/group__prim_ga3ebfde5f356602f31b898e7f04a31df5.html b/c-api/group__prim_ga3ebfde5f356602f31b898e7f04a31df5.html
index 2b60eff0..e0572a51 100644
--- a/c-api/group__prim_ga3ebfde5f356602f31b898e7f04a31df5.html
+++ b/c-api/group__prim_ga3ebfde5f356602f31b898e7f04a31df5.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: global_set_id
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
global_set_cps_id
global_set_id
global_stack_size
-
load_varargs
+
load_varargs
pack_env_variables
set_env_variables
@@ -132,7 +135,7 @@ $(function() {
diff --git a/c-api/group__prim_ga40967337a1c3f523ee9623aec0f69388.html b/c-api/group__prim_ga40967337a1c3f523ee9623aec0f69388.html
index 799319ce..c6604857 100644
--- a/c-api/group__prim_ga40967337a1c3f523ee9623aec0f69388.html
+++ b/c-api/group__prim_ga40967337a1c3f523ee9623aec0f69388.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: global_stack_size
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
global_set_cps_id
global_set_id
global_stack_size
-
load_varargs
+
load_varargs
pack_env_variables
set_env_variables
@@ -112,7 +115,7 @@ $(function() {
diff --git a/c-api/group__prim_ga4f2c5a5fc256f3af3bc45f40b145495e.html b/c-api/group__prim_ga4f2c5a5fc256f3af3bc45f40b145495e.html
index bb9e0ad6..1341d410 100644
--- a/c-api/group__prim_ga4f2c5a5fc256f3af3bc45f40b145495e.html
+++ b/c-api/group__prim_ga4f2c5a5fc256f3af3bc45f40b145495e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_global_set_cps
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
global_set_cps_id
global_set_id
global_stack_size
-
load_varargs
+
load_varargs
pack_env_variables
set_env_variables
@@ -144,7 +147,7 @@ $(function() {
diff --git a/c-api/group__prim_ga63b79aa081f1235bc39c394805f8bcb9.html b/c-api/group__prim_ga63b79aa081f1235bc39c394805f8bcb9.html
index 97b9e6f8..e53563c7 100644
--- a/c-api/group__prim_ga63b79aa081f1235bc39c394805f8bcb9.html
+++ b/c-api/group__prim_ga63b79aa081f1235bc39c394805f8bcb9.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: global_set
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
global_set_cps_id
global_set_id
global_stack_size
-
load_varargs
+
load_varargs
pack_env_variables
set_env_variables
@@ -126,7 +129,7 @@ $(function() {
diff --git a/c-api/group__prim_ga96fe9b0b1e64dad3a56dca83bee3813c.html b/c-api/group__prim_ga96fe9b0b1e64dad3a56dca83bee3813c.html
index 1be23638..486d8a21 100644
--- a/c-api/group__prim_ga96fe9b0b1e64dad3a56dca83bee3813c.html
+++ b/c-api/group__prim_ga96fe9b0b1e64dad3a56dca83bee3813c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: __glo_eval_91from_91c_scheme_eval
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
global_set_cps_id
global_set_id
global_stack_size
-
load_varargs
+
load_varargs
pack_env_variables
set_env_variables
@@ -112,7 +115,7 @@ $(function() {
diff --git a/c-api/group__prim_ga9a240612595f5c22331d6f14f2251168.html b/c-api/group__prim_ga9a240612595f5c22331d6f14f2251168.html
index c2428021..bad71dc6 100644
--- a/c-api/group__prim_ga9a240612595f5c22331d6f14f2251168.html
+++ b/c-api/group__prim_ga9a240612595f5c22331d6f14f2251168.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: get_env_variables
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
global_set_cps_id
global_set_id
global_stack_size
-
load_varargs
+
load_varargs
pack_env_variables
set_env_variables
@@ -115,7 +118,7 @@ $(function() {
diff --git a/c-api/group__prim_gab154b8cf89ddd05acae1578d05597ec3.html b/c-api/group__prim_gab154b8cf89ddd05acae1578d05597ec3.html
index 6fdf3f17..b25b9a7d 100644
--- a/c-api/group__prim_gab154b8cf89ddd05acae1578d05597ec3.html
+++ b/c-api/group__prim_gab154b8cf89ddd05acae1578d05597ec3.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: __glo_call_95cc_scheme_base
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
global_set_cps_id
global_set_id
global_stack_size
-
load_varargs
+
load_varargs
pack_env_variables
set_env_variables
@@ -112,7 +115,7 @@ $(function() {
diff --git a/c-api/group__prim_gabd10ce68a5e67c762c8711cbf2bd57bb.html b/c-api/group__prim_gabd10ce68a5e67c762c8711cbf2bd57bb.html
index f721407c..7d0409dd 100644
--- a/c-api/group__prim_gabd10ce68a5e67c762c8711cbf2bd57bb.html
+++ b/c-api/group__prim_gabd10ce68a5e67c762c8711cbf2bd57bb.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: pack_env_variables
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
global_set_cps_id
global_set_id
global_stack_size
-
load_varargs
+
load_varargs
pack_env_variables
set_env_variables
@@ -126,7 +129,7 @@ $(function() {
diff --git a/c-api/group__prim_gacc4d23600377e7fe771cac388c68a16e.html b/c-api/group__prim_gacc4d23600377e7fe771cac388c68a16e.html
index d61b1eb0..6c2e909f 100644
--- a/c-api/group__prim_gacc4d23600377e7fe771cac388c68a16e.html
+++ b/c-api/group__prim_gacc4d23600377e7fe771cac388c68a16e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: global_set_cps_id
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
global_set_cps_id
global_set_id
global_stack_size
-
load_varargs
+
load_varargs
pack_env_variables
set_env_variables
@@ -144,7 +147,7 @@ $(function() {
diff --git a/c-api/group__prim_gad4a90351f4237dd82fdda26dcb8066bd.html b/c-api/group__prim_gad4a90351f4237dd82fdda26dcb8066bd.html
index d7c3e2e3..dbdc0fd9 100644
--- a/c-api/group__prim_gad4a90351f4237dd82fdda26dcb8066bd.html
+++ b/c-api/group__prim_gad4a90351f4237dd82fdda26dcb8066bd.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: set_env_variables
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
global_set_cps_id
global_set_id
global_stack_size
-
load_varargs
+
load_varargs
pack_env_variables
set_env_variables
@@ -116,7 +119,7 @@ $(function() {
diff --git a/c-api/group__prim_gadb1be8a5abdf0fe836e84266417d1400.html b/c-api/group__prim_gadb1be8a5abdf0fe836e84266417d1400.html
index a8ecae79..9d2c62fd 100644
--- a/c-api/group__prim_gadb1be8a5abdf0fe836e84266417d1400.html
+++ b/c-api/group__prim_gadb1be8a5abdf0fe836e84266417d1400.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_glo_call_cc
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
global_set_cps_id
global_set_id
global_stack_size
-
load_varargs
+
load_varargs
pack_env_variables
set_env_variables
@@ -112,7 +115,7 @@ $(function() {
diff --git a/c-api/group__prim_gae07885205bf58cbc3795cababd5ae547.html b/c-api/group__prim_gae07885205bf58cbc3795cababd5ae547.html
index 94d2518d..9f9a2568 100644
--- a/c-api/group__prim_gae07885205bf58cbc3795cababd5ae547.html
+++ b/c-api/group__prim_gae07885205bf58cbc3795cababd5ae547.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Cyc_glo_eval_from_c
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
global_set_cps_id
global_set_id
global_stack_size
-
load_varargs
+
load_varargs
pack_env_variables
set_env_variables
@@ -114,7 +117,7 @@ $(function() {
diff --git a/c-api/group__prim_gaf968b113670a6d3a201d6c34c601b88f.html b/c-api/group__prim_gaf968b113670a6d3a201d6c34c601b88f.html
index e0a2eeba..951e1d06 100644
--- a/c-api/group__prim_gaf968b113670a6d3a201d6c34c601b88f.html
+++ b/c-api/group__prim_gaf968b113670a6d3a201d6c34c601b88f.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: global_set_cps
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
-
+
+/* @license-end */
diff --git a/c-api/hashset_8c_a064f95b87450bfa2cc9a88d646af545e.html b/c-api/hashset_8c_a064f95b87450bfa2cc9a88d646af545e.html
index 0680e814..48d6d5dc 100644
--- a/c-api/hashset_8c_a064f95b87450bfa2cc9a88d646af545e.html
+++ b/c-api/hashset_8c_a064f95b87450bfa2cc9a88d646af545e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: hashset_create
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -88,7 +92,6 @@ $(function() {
hashset_t hashset_create
(
- void
)
@@ -105,7 +108,7 @@ $(function() {
diff --git a/c-api/hashset_8c_a221d0899f752564043e81e319881455d.html b/c-api/hashset_8c_a221d0899f752564043e81e319881455d.html
new file mode 100644
index 00000000..f53b7caa
--- /dev/null
+++ b/c-api/hashset_8c_a221d0899f752564043e81e319881455d.html
@@ -0,0 +1,125 @@
+
+
+
+
+
+
+
+Cyclone Scheme: hashset_to_array
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ hashset_to_array()
+
+
+
+
+
+ void hashset_to_array
+ (
+ hashset_t
+ set ,
+
+
+
+
+ void **
+ items
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/hashset_8c_a31e95da7ee1f76c30b9fec773d9b380c.html b/c-api/hashset_8c_a31e95da7ee1f76c30b9fec773d9b380c.html
index c3299afc..e47b9f8b 100644
--- a/c-api/hashset_8c_a31e95da7ee1f76c30b9fec773d9b380c.html
+++ b/c-api/hashset_8c_a31e95da7ee1f76c30b9fec773d9b380c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: hashset_add
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -115,7 +119,7 @@ $(function() {
diff --git a/c-api/hashset_8c_a55de036dbc978294c262a7751f4caa81.html b/c-api/hashset_8c_a55de036dbc978294c262a7751f4caa81.html
index 7dc01556..3a767e4c 100644
--- a/c-api/hashset_8c_a55de036dbc978294c262a7751f4caa81.html
+++ b/c-api/hashset_8c_a55de036dbc978294c262a7751f4caa81.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: hashset_is_member
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -115,7 +119,7 @@ $(function() {
diff --git a/c-api/hashset_8c_a5b0ad513d6e64cd754213b0103a094e0.html b/c-api/hashset_8c_a5b0ad513d6e64cd754213b0103a094e0.html
index f49c074d..8f155ed6 100644
--- a/c-api/hashset_8c_a5b0ad513d6e64cd754213b0103a094e0.html
+++ b/c-api/hashset_8c_a5b0ad513d6e64cd754213b0103a094e0.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: hashset_remove
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -115,7 +119,7 @@ $(function() {
diff --git a/c-api/hashset_8c_a6e280b06a1572145d3211e36e47eea6e.html b/c-api/hashset_8c_a6e280b06a1572145d3211e36e47eea6e.html
index 0399978c..b8061c8a 100644
--- a/c-api/hashset_8c_a6e280b06a1572145d3211e36e47eea6e.html
+++ b/c-api/hashset_8c_a6e280b06a1572145d3211e36e47eea6e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: hashset_destroy
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -105,7 +109,7 @@ $(function() {
diff --git a/c-api/hashset_8c_a8d4800d73d1a58ad953501d9035de5ec.html b/c-api/hashset_8c_a8d4800d73d1a58ad953501d9035de5ec.html
index 8175a9c6..7c269a98 100644
--- a/c-api/hashset_8c_a8d4800d73d1a58ad953501d9035de5ec.html
+++ b/c-api/hashset_8c_a8d4800d73d1a58ad953501d9035de5ec.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: hashset_num_items
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -105,7 +109,7 @@ $(function() {
diff --git a/c-api/hashset_8h.html b/c-api/hashset_8h.html
index 04e4b9a3..eda6b2b5 100644
--- a/c-api/hashset_8h.html
+++ b/c-api/hashset_8h.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: include/cyclone/hashset.h File Reference
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
diff --git a/c-api/hashset_8h_a221d0899f752564043e81e319881455d.html b/c-api/hashset_8h_a221d0899f752564043e81e319881455d.html
new file mode 100644
index 00000000..d999600b
--- /dev/null
+++ b/c-api/hashset_8h_a221d0899f752564043e81e319881455d.html
@@ -0,0 +1,126 @@
+
+
+
+
+
+
+
+Cyclone Scheme: hashset_to_array
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cyclone Scheme
+ 0.28.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+◆ hashset_to_array()
+
+
+
+
+
+ void hashset_to_array
+ (
+ hashset_t
+ set ,
+
+
+
+
+ void **
+ items
+
+
+
+ )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/c-api/hashset_8h_a31e95da7ee1f76c30b9fec773d9b380c.html b/c-api/hashset_8h_a31e95da7ee1f76c30b9fec773d9b380c.html
index 4494effd..6fca574e 100644
--- a/c-api/hashset_8h_a31e95da7ee1f76c30b9fec773d9b380c.html
+++ b/c-api/hashset_8h_a31e95da7ee1f76c30b9fec773d9b380c.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: hashset_add
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -116,7 +120,7 @@ $(function() {
diff --git a/c-api/hashset_8h_a55de036dbc978294c262a7751f4caa81.html b/c-api/hashset_8h_a55de036dbc978294c262a7751f4caa81.html
index bcbcabc1..671f9338 100644
--- a/c-api/hashset_8h_a55de036dbc978294c262a7751f4caa81.html
+++ b/c-api/hashset_8h_a55de036dbc978294c262a7751f4caa81.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: hashset_is_member
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -116,7 +120,7 @@ $(function() {
diff --git a/c-api/hashset_8h_a5b0ad513d6e64cd754213b0103a094e0.html b/c-api/hashset_8h_a5b0ad513d6e64cd754213b0103a094e0.html
index be3fc7f8..99fa1143 100644
--- a/c-api/hashset_8h_a5b0ad513d6e64cd754213b0103a094e0.html
+++ b/c-api/hashset_8h_a5b0ad513d6e64cd754213b0103a094e0.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: hashset_remove
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -116,7 +120,7 @@ $(function() {
diff --git a/c-api/hashset_8h_a6e280b06a1572145d3211e36e47eea6e.html b/c-api/hashset_8h_a6e280b06a1572145d3211e36e47eea6e.html
index 9b181c08..6b81afe8 100644
--- a/c-api/hashset_8h_a6e280b06a1572145d3211e36e47eea6e.html
+++ b/c-api/hashset_8h_a6e280b06a1572145d3211e36e47eea6e.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: hashset_destroy
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -106,7 +110,7 @@ $(function() {
diff --git a/c-api/hashset_8h_a8d4800d73d1a58ad953501d9035de5ec.html b/c-api/hashset_8h_a8d4800d73d1a58ad953501d9035de5ec.html
index ba4ab649..e4174357 100644
--- a/c-api/hashset_8h_a8d4800d73d1a58ad953501d9035de5ec.html
+++ b/c-api/hashset_8h_a8d4800d73d1a58ad953501d9035de5ec.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: hashset_num_items
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -106,7 +110,7 @@ $(function() {
diff --git a/c-api/hashset_8h_aac03213c671cfd0fa39a39a0c79804fe.html b/c-api/hashset_8h_aac03213c671cfd0fa39a39a0c79804fe.html
index 3e8458f4..7ba2d4e0 100644
--- a/c-api/hashset_8h_aac03213c671cfd0fa39a39a0c79804fe.html
+++ b/c-api/hashset_8h_aac03213c671cfd0fa39a39a0c79804fe.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: hashset_create
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -106,7 +110,7 @@ $(function() {
diff --git a/c-api/hashset_8h_ad69fd91d4c662d832841b95188dd47f4.html b/c-api/hashset_8h_ad69fd91d4c662d832841b95188dd47f4.html
index 841a2af2..54e78cf5 100644
--- a/c-api/hashset_8h_ad69fd91d4c662d832841b95188dd47f4.html
+++ b/c-api/hashset_8h_ad69fd91d4c662d832841b95188dd47f4.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: hashset_t
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -102,7 +106,7 @@ $(function() {
diff --git a/c-api/hashset_8h_source.html b/c-api/hashset_8h_source.html
index 2c7c9fff..54bb9c2c 100644
--- a/c-api/hashset_8h_source.html
+++ b/c-api/hashset_8h_source.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: include/cyclone/hashset.h Source File
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
hashset.h
-
Go to the documentation of this file. size_t n_deleted_items
Definition: hashset.h:34
-
void hashset_destroy(hashset_t set)
Definition: hashset.c:49
-
int hashset_remove(hashset_t set, void *item)
Definition: hashset.c:114
-
size_t nitems
Definition: hashset.h:33
-
struct hashset_st * hashset_t
Definition: hashset.h:37
-
size_t nbits
Definition: hashset.h:28
-
int hashset_is_member(hashset_t set, void *item)
Definition: hashset.c:132
-
size_t capacity
Definition: hashset.h:31
-
size_t mask
Definition: hashset.h:29
-
int hashset_add(hashset_t set, void *item)
Definition: hashset.c:107
-
size_t * items
Definition: hashset.h:32
-
hashset_t hashset_create(void)
Definition: hashset.c:24
-
size_t hashset_num_items(hashset_t set)
Definition: hashset.c:44
-
+
Go to the documentation of this file.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
size_t nbits
Definition: hashset.h:28
+
int hashset_is_member(hashset_t set, void *item)
Definition: hashset.c:132
+
size_t n_deleted_items
Definition: hashset.h:34
+
size_t nitems
Definition: hashset.h:33
+
size_t mask
Definition: hashset.h:29
+
struct hashset_st * hashset_t
Definition: hashset.h:37
+
size_t capacity
Definition: hashset.h:31
+
void hashset_destroy(hashset_t set)
Definition: hashset.c:49
+
+
size_t * items
Definition: hashset.h:32
+
hashset_t hashset_create(void)
Definition: hashset.c:24
+
void hashset_to_array(hashset_t set, void **items)
Definition: hashset.c:147
+
size_t hashset_num_items(hashset_t set)
Definition: hashset.c:44
+
int hashset_remove(hashset_t set, void *item)
Definition: hashset.c:114
+
int hashset_add(hashset_t set, void *item)
Definition: hashset.c:107
diff --git a/c-api/index.html b/c-api/index.html
index deae786a..04502c5f 100644
--- a/c-api/index.html
+++ b/c-api/index.html
@@ -1,9 +1,9 @@
-
+
-
+
Cyclone Scheme: Main Page
@@ -23,7 +23,7 @@
Cyclone Scheme
- 0.20
+ 0.28.0
@@ -31,18 +31,21 @@
-
+
+/* @license-end */
@@ -64,17 +67,12 @@ $(function() {
Cyclone Scheme Documentation
-
C API
-
This documentation covers the C API provided by Cyclone Scheme. It is intended both to help understand how the Cyclone runtime works as well as to provide a useful reference manual when working with the Cyclone FFI.
-
See the modules page for an overview of the major sections.
-
Scheme API
-
Documentation for the Scheme API is maintained back at the main API Documentation page.
-
+
diff --git a/c-api/jquery.js b/c-api/jquery.js
index f5343eda..103c32d7 100644
--- a/c-api/jquery.js
+++ b/c-api/jquery.js
@@ -1,71 +1,26 @@
+/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */
+!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML=" ",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML=" ";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""," "],thead:[1,""],col:[2,""],tr:[2,""],td:[3,""],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;nx",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/
+/* @license-end */
-