9#include "internal/bits.h"
10#include "internal/error.h"
11#include "internal/hash.h"
12#include "internal/object.h"
13#include "internal/proc.h"
14#include "internal/sanitizers.h"
15#include "internal/set.h"
16#include "internal/set_table.h"
17#include "internal/symbol.h"
18#include "internal/variable.h"
19#include "ruby_assert.h"
32#include "internal/gc.h"
38 union {
double d; st_index_t i;} u;
43static const uint64_t prime1 = ((uint64_t)0x2e0bb864 << 32) | 0xe9ea7df5;
44static const uint32_t prime2 = 0x830fcab9;
47mult_and_mix(uint64_t m1, uint64_t m2)
49#if defined HAVE_UINT128_T
50 uint128_t r = (uint128_t) m1 * (uint128_t) m2;
51 return (uint64_t) (r >> 64) ^ (uint64_t) r;
53 uint64_t hm1 = m1 >> 32, hm2 = m2 >> 32;
54 uint64_t lm1 = m1, lm2 = m2;
55 uint64_t v64_128 = hm1 * hm2;
56 uint64_t v32_96 = hm1 * lm2 + lm1 * hm2;
57 uint64_t v1_32 = lm1 * lm2;
59 return (v64_128 + (v32_96 >> 32)) ^ ((v32_96 << 32) + v1_32);
64key64_hash(uint64_t key, uint32_t seed)
66 return mult_and_mix(key + seed, prime1);
70#define set_index_hash(index) key64_hash(rb_hash_start(index), prime2)
73set_ident_hash(st_data_t n)
82 n ^= dbl_to_index(rb_float_value(n));
86 return (st_index_t)set_index_hash((st_index_t)n);
100static VALUE set_i_compare_by_identity(
VALUE set);
102#define id_each idEach
103static ID id_each_entry;
107static ID id_set_iter_lev;
108static ID id_subclass_compatible;
109static ID id_class_methods;
111#define RSET_INITIALIZED FL_USER1
112#define RSET_LEV_MASK (FL_USER13 | FL_USER14 | FL_USER15 | \
113 FL_USER16 | FL_USER17 | FL_USER18 | FL_USER19)
114#define RSET_LEV_SHIFT (FL_USHIFT + 13)
115#define RSET_LEV_MAX 127
117#define SET_ASSERT(expr) RUBY_ASSERT_MESG_WHEN(SET_DEBUG, expr, #expr)
119#define RSET_SIZE(set) set_table_size(RSET_TABLE(set))
120#define RSET_EMPTY(set) (RSET_SIZE(set) == 0)
121#define RSET_SIZE_NUM(set) SIZET2NUM(RSET_SIZE(set))
122#define RSET_IS_MEMBER(set, item) set_table_lookup(RSET_TABLE(set), (st_data_t)(item))
123#define RSET_COMPARE_BY_IDENTITY(set) (RSET_TABLE(set)->type == &identhash)
130mark_and_pin_key(st_data_t key, st_data_t data)
132 rb_gc_mark((
VALUE)key);
138mark_key(st_data_t key, st_data_t data)
140 rb_gc_mark_movable((
VALUE)key);
150 if (sobj->table.type == &identhash) {
151 set_table_foreach(&sobj->table, mark_and_pin_key, 0);
154 set_table_foreach(&sobj->table, mark_key, 0);
163 set_free_embedded_table(&sobj->table);
167set_size(
const void *ptr)
171 return (
unsigned long)set_memsize(&sobj->table) -
sizeof(sobj->table);
175set_foreach_replace(st_data_t key, st_data_t argp,
int error)
177 if (rb_gc_location((
VALUE)key) != (
VALUE)key) {
185set_replace_ref(st_data_t *key, st_data_t argp,
int existing)
187 rb_gc_mark_and_move((
VALUE *)key);
193set_update_references(
void *ptr)
196 set_foreach_with_replace(&sobj->table, set_foreach_replace, set_replace_ref, 0);
205 .dcompact = set_update_references,
207 .flags = RUBY_TYPED_EMBEDDABLE | RUBY_TYPED_THREAD_SAFE_FREE | RUBY_TYPED_WB_PROTECTED | RUBY_TYPED_FROZEN_SHAREABLE
219iter_lev_in_ivar(
VALUE set)
224 SET_ASSERT(lev >= 0);
225 return (
unsigned long)lev;
231iter_lev_in_ivar_set(
VALUE set,
unsigned long lev)
233 SET_ASSERT(lev >= RSET_LEV_MAX);
235 rb_ivar_set_internal(set, id_set_iter_lev,
LONG2FIX((
long)lev));
238static inline unsigned long
239iter_lev_in_flags(
VALUE set)
241 return (
unsigned long)((
RBASIC(set)->flags >> RSET_LEV_SHIFT) & RSET_LEV_MAX);
245iter_lev_in_flags_set(
VALUE set,
unsigned long lev)
247 SET_ASSERT(lev <= RSET_LEV_MAX);
248 RBASIC(set)->flags = ((
RBASIC(set)->flags & ~RSET_LEV_MASK) | ((
VALUE)lev << RSET_LEV_SHIFT));
252set_iterating_p(
VALUE set)
254 return iter_lev_in_flags(set) > 0;
258set_iter_lev_inc(
VALUE set)
260 unsigned long lev = iter_lev_in_flags(set);
261 if (lev == RSET_LEV_MAX) {
262 lev = iter_lev_in_ivar(set) + 1;
269 iter_lev_in_flags_set(set, lev);
270 if (lev < RSET_LEV_MAX)
return;
272 iter_lev_in_ivar_set(set, lev);
276set_iter_lev_dec(
VALUE set)
278 unsigned long lev = iter_lev_in_flags(set);
279 if (lev == RSET_LEV_MAX) {
280 lev = iter_lev_in_ivar(set);
281 if (lev > RSET_LEV_MAX) {
282 iter_lev_in_ivar_set(set, lev-1);
285 rb_attr_delete(set, id_set_iter_lev);
290 iter_lev_in_flags_set(set, lev - 1);
294set_foreach_ensure(
VALUE set)
296 set_iter_lev_dec(set);
304 set_foreach_func *func;
309set_iter_status_check(
int status)
311 if (status == ST_CONTINUE) {
319set_foreach_iter(st_data_t key, st_data_t argp,
int error)
323 if (error)
return ST_STOP;
326 int status = (*arg->func)((
VALUE)key, arg->arg);
328 if (RSET_TABLE(arg->set) != tbl) {
332 return set_iter_status_check(status);
336set_foreach_call(
VALUE arg)
340 ret = set_foreach_check(RSET_TABLE(set), set_foreach_iter,
341 (st_data_t)arg, (st_data_t)
Qundef);
349set_iter(
VALUE set, set_foreach_func *func,
VALUE farg)
359 set_foreach_call((
VALUE)&arg);
362 set_iter_lev_inc(set);
363 rb_ensure(set_foreach_call, (
VALUE)&arg, set_foreach_ensure, set);
367NORETURN(
static void no_new_item(
void));
371 rb_raise(
rb_eRuntimeError,
"can't add a new item into set during iteration");
375set_compact_after_delete(
VALUE set)
377 if (!set_iterating_p(set)) {
378 set_compact_table(RSET_TABLE(set));
386 key = rb_hash_key_str(key);
388 int ret = set_insert(tab, (st_data_t)key);
396 return set_table_insert_wb(RSET_TABLE(set), set, key);
406 set_init_table_with_size(&sobj->table,
type, size);
412set_alloc_with_size(
VALUE klass, st_index_t size)
414 return set_alloc_with_size_and_type(klass, size, &objhash);
418set_s_alloc(
VALUE klass)
420 return set_alloc_with_size(klass, 0);
426 return rb_typeddata_is_instance_of(obj, &set_data_type);
445set_s_create(
int argc,
VALUE *argv,
VALUE klass)
447 VALUE set = set_alloc_with_size(klass, argc);
451 for (i=0; i < argc; i++) {
452 set_table_insert_wb(table, set, argv[i]);
475 rb_raise(rb_eArgError,
"value must be a set");
480enum_method_id(
VALUE other)
483 return id_each_entry;
489 rb_raise(rb_eArgError,
"value must be enumerable");
496 return RSET_SIZE_NUM(set);
503 set_insert_wb(set, element);
511 set_insert_wb(set, element);
550set_i_initialize(
int argc,
VALUE *argv,
VALUE set)
552 if (
RBASIC(set)->flags & RSET_INITIALIZED) {
555 RBASIC(set)->flags |= RSET_INITIALIZED;
560 if (argc > 0 && (other = argv[0]) !=
Qnil) {
567 if (block_given) key =
rb_yield(key);
568 set_table_insert_wb(into, set, key);
573 rb_block_given_p() ? set_initialize_with_block : set_initialize_without_block,
585 if (set == other)
return set;
587 if (set_iterating_p(set)) {
594 set_free_embedded_table(&sobj->table);
595 set_copy(&sobj->table, RSET_TABLE(other));
596 rb_gc_writebarrier_remember(set);
602set_inspect_i(st_data_t key, st_data_t arg)
606 if (args[1] ==
Qtrue) {
624 str = rb_sprintf(
"%"PRIsVALUE
"[...]", klass_name);
628 str = rb_sprintf(
"%"PRIsVALUE
"[", klass_name);
630 set_iter(set, set_inspect_i, (st_data_t)args);
648set_i_inspect(
VALUE set)
654set_to_a_i(st_data_t key, st_data_t arg)
674 st_index_t size = RSET_SIZE(set);
677 if (size == 0)
return ary;
679 if (ST_DATA_COMPATIBLE_P(
VALUE)) {
681 size = set_keys(RSET_TABLE(set), ptr, size);
683 rb_gc_writebarrier_remember(ary);
684 rb_ary_set_len(ary, size);
687 set_iter(set, set_to_a_i, (st_data_t)ary);
721set_i_to_set(
VALUE set)
777 rb_check_frozen(set);
778 if (set_iterating_p(set)) {
779 if (!set_table_lookup(RSET_TABLE(set), (st_data_t)item)) {
784 set_insert_wb(set, item);
805 rb_check_frozen(set);
806 if (set_iterating_p(set)) {
807 if (!set_table_lookup(RSET_TABLE(set), (st_data_t)item)) {
813 return set_insert_wb(set, item) ?
Qnil : set;
833 rb_check_frozen(set);
834 if (set_table_delete(RSET_TABLE(set), (st_data_t *)&item)) {
835 set_compact_after_delete(set);
855 rb_check_frozen(set);
856 if (set_table_delete(RSET_TABLE(set), (st_data_t *)&item)) {
857 set_compact_after_delete(set);
864set_delete_if_i(st_data_t key, st_data_t dummy)
887set_i_delete_if(
VALUE set)
890 rb_check_frozen(set);
891 set_iter(set, set_delete_if_i, 0);
892 set_compact_after_delete(set);
913set_i_reject(
VALUE set)
916 rb_check_frozen(set);
919 size_t n = set_table_size(table);
920 set_iter(set, set_delete_if_i, 0);
922 if (n == set_table_size(table))
return Qnil;
924 set_compact_after_delete(set);
929set_classify_i(st_data_t key, st_data_t tmp)
932 VALUE hash = args[0];
934 VALUE set = rb_hash_lookup2(hash, hash_key,
Qundef);
936 set = set_s_alloc(args[1]);
937 if (
RTEST(args[2])) {
938 set_i_compare_by_identity(set);
940 rb_hash_aset(hash, hash_key, set);
968set_i_classify(
VALUE set)
972 args[0] = rb_hash_new();
974 args[2] = RBOOL(RSET_COMPARE_BY_IDENTITY(set));
975 set_iter(set, set_classify_i, (st_data_t)args);
981set_divide_union_find_root(
long *uf_parents,
long index,
long *tmp_array)
983 long root = uf_parents[index];
984 long update_size = 0;
985 while (root != index) {
986 tmp_array[update_size++] = index;
988 root = uf_parents[index];
990 for (
long j = 0; j < update_size; j++) {
991 long idx = tmp_array[j];
992 uf_parents[idx] = root;
998set_divide_union_find_merge(
long *uf_parents,
long i,
long j,
long *tmp_array)
1000 long root_i = set_divide_union_find_root(uf_parents, i, tmp_array);
1001 long root_j = set_divide_union_find_root(uf_parents, j, tmp_array);
1002 if (root_i != root_j) uf_parents[root_j] = root_i;
1006set_divide_arity2(
VALUE set)
1009 long size, *uf_parents, *tmp_array;
1011 VALUE items = set_i_to_a(set);
1014 tmp_array =
ALLOCV_N(
long, tmp, size);
1015 uf_parents =
ALLOCV_N(
long, uf, size);
1016 for (
long i = 0; i < size; i++) {
1019 for (
long i = 0; i < size - 1; i++) {
1021 for (
long j = i + 1; j < size; j++) {
1025 set_divide_union_find_merge(uf_parents, i, j, tmp_array);
1030 VALUE hash = rb_hash_new();
1031 for (
long i = 0; i < size; i++) {
1033 long root = set_divide_union_find_root(uf_parents, i, tmp_array);
1035 if (subset ==
Qnil) {
1036 subset = set_s_alloc(set_class);
1037 if (RSET_COMPARE_BY_IDENTITY(set)) {
1038 set_i_compare_by_identity(subset);
1040 rb_hash_aset(hash,
LONG2FIX(root), subset);
1041 set_i_add(final_set, subset);
1043 set_i_add(subset, v);
1050static void set_merge_enum_into(
VALUE set,
VALUE arg);
1098set_i_divide(
VALUE set)
1102 if (rb_block_arity() == 2) {
1103 return set_divide_arity2(set);
1106 VALUE values = rb_hash_values(set_i_classify(set));
1108 set_merge_enum_into(set, values);
1113set_clear_i(st_data_t key, st_data_t dummy)
1129set_i_clear(
VALUE set)
1131 rb_check_frozen(set);
1132 if (RSET_SIZE(set) == 0)
return set;
1133 if (set_iterating_p(set)) {
1134 set_iter(set, set_clear_i, 0);
1137 set_table_clear(RSET_TABLE(set));
1138 set_compact_after_delete(set);
1150set_intersection_i(st_data_t key, st_data_t tmp)
1153 if (set_table_lookup(data->other, key)) {
1154 set_table_insert_wb(data->into, data->set, key);
1163 set_intersection_i((st_data_t)i, (st_data_t)data);
1186 if (RSET_COMPARE_BY_IDENTITY(set)) {
1187 set_i_compare_by_identity(new_set);
1190 set_table *ntable = RSET_TABLE(new_set);
1194 if (set_table_size(stable) >= set_table_size(otable)) {
1205 set_iter(set, set_intersection_i, (st_data_t)&data);
1213 rb_block_call(other, enum_method_id(other), 0, 0, set_intersection_block, (
VALUE)&data);
1248 return RBOOL(RSET_IS_MEMBER(set, item));
1257set_merge_i(st_data_t key, st_data_t data)
1260 set_table_insert_wb(args->into, args->set, key);
1267 VALUE element = key;
1268 set_insert_wb(set, element);
1278 .into = RSET_TABLE(set)
1280 set_iter(arg, set_merge_i, (st_data_t)&args);
1286 set_table_insert_wb(into, set,
RARRAY_AREF(arg, i));
1312 rb_raise(rb_eArgError,
"no keywords accepted");
1315 if (set_iterating_p(set)) {
1319 rb_check_frozen(set);
1323 for (i=0; i < argc; i++) {
1324 set_merge_enum_into(set, argv[i]);
1333 rb_check_frozen(set);
1339 size_t size = set_table_size(old);
1341 set_table *
new = set_init_table_with_size(NULL,
type, size);
1346 set_iter(set, set_merge_i, (st_data_t)&args);
1347 set_free_embedded_table(&sobj->table);
1348 memcpy(&sobj->table,
new,
sizeof(*
new));
1352 sobj->table.type =
type;
1385set_i_compare_by_identity(
VALUE set)
1387 if (RSET_COMPARE_BY_IDENTITY(set))
return set;
1389 if (set_iterating_p(set)) {
1393 return set_reset_table_with_type(set, &identhash);
1412set_i_compare_by_identity_p(
VALUE set)
1414 return RBOOL(RSET_COMPARE_BY_IDENTITY(set));
1428set_i_size(
VALUE set)
1430 return RSET_SIZE_NUM(set);
1445set_i_empty(
VALUE set)
1447 return RBOOL(RSET_EMPTY(set));
1451set_xor_i(st_data_t key, st_data_t data)
1456 if (set_table_insert_wb(table, set, element)) {
1457 set_table_delete(table, &element);
1491 set_iter(other, set_xor_i, (st_data_t)new_set);
1495 if (RSET_COMPARE_BY_IDENTITY(new_set)) {
1496 set_i_compare_by_identity(tmp);
1498 set_merge_enum_into(tmp, other);
1499 set_iter(tmp, set_xor_i, (st_data_t)new_set);
1501 set_compact_after_delete(set);
1525 set_merge_enum_into(set, other);
1530set_remove_i(st_data_t key, st_data_t from)
1532 set_table_delete((
struct set_table *)from, (st_data_t *)&key);
1539 rb_check_frozen(set);
1540 set_table_delete(RSET_TABLE(set), (st_data_t *)&key);
1548 set_iter(arg, set_remove_i, (st_data_t)RSET_TABLE(set));
1553 set_compact_after_delete(set);
1572 rb_check_frozen(set);
1573 set_remove_enum_from(set, other);
1596 return set_i_subtract(
rb_obj_dup(set), other);
1600set_each_i(st_data_t key, st_data_t dummy)
1622set_i_each(
VALUE set)
1625 set_iter(set, set_each_i, 0);
1630set_collect_i(st_data_t key, st_data_t data)
1652set_i_collect(
VALUE set)
1655 rb_check_frozen(set);
1658 if (RSET_COMPARE_BY_IDENTITY(set)) {
1659 set_i_compare_by_identity(new_set);
1661 set_iter(set, set_collect_i, (st_data_t)new_set);
1662 set_i_initialize_copy(set, new_set);
1668set_keep_if_i(st_data_t key, st_data_t into)
1671 set_table_delete((
set_table *)into, &key);
1695set_i_keep_if(
VALUE set)
1698 rb_check_frozen(set);
1700 set_iter(set, set_keep_if_i, (st_data_t)RSET_TABLE(set));
1701 set_compact_after_delete(set);
1723set_i_select(
VALUE set)
1726 rb_check_frozen(set);
1729 size_t n = set_table_size(table);
1730 set_iter(set, set_keep_if_i, (st_data_t)table);
1731 set_compact_after_delete(set);
1733 return (n == set_table_size(table)) ?
Qnil : set;
1751 rb_check_frozen(set);
1754 set_i_initialize_copy(set, other);
1757 if (set_iterating_p(set)) {
1762 enum_method_id(other);
1764 set_table_clear(RSET_TABLE(set));
1765 set_merge_enum_into(set, other);
1767 set_compact_after_delete(set);
1794set_i_reset(
VALUE set)
1796 if (set_iterating_p(set)) {
1800 return set_reset_table_with_type(set, RSET_TABLE(set)->
type);
1806set_flatten_merge_i(st_data_t item, st_data_t arg)
1809 VALUE set = args[0];
1811 VALUE e_id = rb_obj_id(item);
1812 VALUE hash = args[2];
1813 switch(rb_hash_aref(hash, e_id)) {
1817 rb_raise(rb_eArgError,
"tried to flatten recursive Set");
1822 rb_hash_aset(hash, e_id,
Qtrue);
1823 set_flatten_merge(set, item, hash);
1824 rb_hash_aset(hash, e_id,
Qfalse);
1827 set_i_add(set, item);
1835 VALUE args[3] = {set, from, hash};
1836 set_iter(from, set_flatten_merge_i, (st_data_t)args);
1860set_i_flatten(
VALUE set)
1863 if (RSET_COMPARE_BY_IDENTITY(set)) {
1864 set_i_compare_by_identity(new_set);
1866 set_flatten_merge(new_set, set, rb_hash_new());
1871set_contains_set_i(st_data_t item, st_data_t arg)
1874 *(
bool *)arg =
true;
1899set_i_flatten_bang(
VALUE set)
1901 bool contains_set =
false;
1902 set_iter(set, set_contains_set_i, (st_data_t)&contains_set);
1903 if (!contains_set)
return Qnil;
1904 rb_check_frozen(set);
1905 return set_i_replace(set, set_i_flatten(set));
1914set_le_i(st_data_t key, st_data_t arg)
1917 if (set_table_lookup(data->table, key))
return ST_CONTINUE;
1926 .table = RSET_TABLE(other),
1929 set_iter(set, set_le_i, (st_data_t)&data);
1951 if (RSET_SIZE(set) >= RSET_SIZE(other))
return Qfalse;
1952 return set_le(set, other);
1973 if (RSET_SIZE(set) > RSET_SIZE(other))
return Qfalse;
1974 return set_le(set, other);
1995 if (RSET_SIZE(set) <= RSET_SIZE(other))
return Qfalse;
1996 return set_le(other, set);
2017 if (RSET_SIZE(set) < RSET_SIZE(other))
return Qfalse;
2018 return set_le(other, set);
2022set_intersect_i(st_data_t key, st_data_t arg)
2025 if (set_table_lookup((
set_table *)args[0], key)) {
2049 size_t set_size = RSET_SIZE(set);
2050 size_t other_size = RSET_SIZE(other);
2055 if (set_size < other_size) {
2057 args[0] = (
VALUE)RSET_TABLE(other);
2061 args[0] = (
VALUE)RSET_TABLE(set);
2063 set_iter(iter_arg, set_intersect_i, (st_data_t)args);
2070 rb_raise(rb_eArgError,
"value must be enumerable");
2089 return RBOOL(!
RTEST(set_i_intersect(set, other)));
2125 size_t set_size = RSET_SIZE(set);
2126 size_t other_size = RSET_SIZE(other);
2128 if (set_size < other_size) {
2129 if (set_le(set, other) ==
Qtrue) {
2133 else if (set_size > other_size) {
2134 if (set_le(other, set) ==
Qtrue) {
2138 else if (set_le(set, other) ==
Qtrue) {
2152set_eql_i(st_data_t item, st_data_t arg)
2156 if (!set_table_lookup(RSET_TABLE(data->set), item)) {
2164set_recursive_eql(
VALUE set,
VALUE dt,
int recur)
2166 if (recur)
return Qtrue;
2168 data->result =
Qtrue;
2169 set_iter(set, set_eql_i, dt);
2170 return data->result;
2190 if (set == other)
return Qtrue;
2194 size_t ssize = set_table_size(stable);
2195 size_t osize = set_table_size(otable);
2197 if (ssize != osize)
return Qfalse;
2198 if (ssize == 0 && osize == 0)
return Qtrue;
2199 if (stable->type != otable->type)
return Qfalse;
2207set_hash_i(st_data_t item, st_data_t(arg))
2209 st_index_t *hval = (st_index_t *)arg;
2210 st_index_t ival = rb_hash(item);
2211 *hval ^= rb_st_hash(&ival,
sizeof(st_index_t), 0);
2227set_i_hash(
VALUE set)
2229 st_index_t size = RSET_SIZE(set);
2230 st_index_t hval = rb_st_hash_start(size);
2233 set_iter(set, set_hash_i, (
VALUE)&hval);
2235 hval = rb_st_hash_end(hval);
2241set_to_hash_i(st_data_t key, st_data_t arg)
2248set_i_to_h(
VALUE set)
2250 long size = RSET_SIZE(set);
2252 if (RSET_COMPARE_BY_IDENTITY(set)) {
2253 hash = rb_ident_hash_new_capa(size);
2256 hash = rb_hash_new_capa(size);
2258 rb_hash_set_default(hash,
Qfalse);
2260 if (size == 0)
return hash;
2262 set_iter(set, set_to_hash_i, (st_data_t)hash);
2267compat_dumper(
VALUE set)
2275set_i_from_hash_i(st_data_t key, st_data_t val, st_data_t set)
2288 if (rb_hash_compare_by_id_p(hash)) set_i_compare_by_identity(set);
2289 rb_hash_stlike_foreach(hash, set_i_from_hash_i, (st_data_t)set);
2296 return set_i_from_hash(self,
rb_ivar_get(a, id_i_hash));
2302rb_ident_set_new(
void)
2304 return set_alloc_with_size_and_type(
rb_cSet, 0, &identhash);
2310 if (set_insert(RSET_TABLE(set), (st_data_t)element) == 0) {
2318rb_set_delete_no_check(
VALUE set,
VALUE element)
2320 return set_table_delete(RSET_TABLE(set), (st_data_t *)&element) != 0;
2324rb_set_to_a(
VALUE set)
2326 return set_i_to_a(set);
2334 set_iter(set, func, arg);
2340 return set_alloc_with_size(
rb_cSet, 0);
2346 return set_alloc_with_size(
rb_cSet, (st_index_t)
capa);
2352 return RSET_IS_MEMBER(set, element);
2358 return set_i_add_p(set, element) !=
Qnil;
2364 return set_i_clear(set);
2370 return set_i_delete_p(set, element) !=
Qnil;
2376 return RSET_SIZE(set);
2587 id_set_iter_lev = rb_make_internal_id();
#define rb_define_method(klass, mid, func, arity)
Defines klass#mid.
#define rb_define_singleton_method(klass, mid, func, arity)
Defines klass.mid.
#define rb_define_private_method(klass, mid, func, arity)
Defines klass#mid and makes it private.
static bool RB_OBJ_FROZEN(VALUE obj)
Checks if an object is frozen.
void rb_include_module(VALUE klass, VALUE module)
Includes a module to a class.
void rb_extend_object(VALUE obj, VALUE module)
Extend the object with the module.
VALUE rb_singleton_class(VALUE obj)
Finds or creates the singleton class of the passed object.
void rb_define_alias(VALUE klass, const char *name1, const char *name2)
Defines an alias of a method.
int rb_keyword_given_p(void)
Determines if the current method is given a keyword argument.
int rb_block_given_p(void)
Determines if the current method is given a block.
#define rb_str_buf_cat2
Old name of rb_usascii_str_new_cstr.
#define Qundef
Old name of RUBY_Qundef.
#define CLASS_OF
Old name of rb_class_of.
#define LONG2FIX
Old name of RB_INT2FIX.
#define T_HASH
Old name of RUBY_T_HASH.
#define FLONUM_P
Old name of RB_FLONUM_P.
#define Qtrue
Old name of RUBY_Qtrue.
#define ST2FIX
Old name of RB_ST2FIX.
#define INT2NUM
Old name of RB_INT2NUM.
#define Qnil
Old name of RUBY_Qnil.
#define Qfalse
Old name of RUBY_Qfalse.
#define FIX2LONG
Old name of RB_FIX2LONG.
#define T_ARRAY
Old name of RUBY_T_ARRAY.
#define ALLOCV_N
Old name of RB_ALLOCV_N.
#define POSFIXABLE
Old name of RB_POSFIXABLE.
#define FIXNUM_P
Old name of RB_FIXNUM_P.
#define ALLOCV_END
Old name of RB_ALLOCV_END.
VALUE rb_eRuntimeError
RuntimeError exception.
VALUE rb_cObject
Object class.
VALUE rb_mEnumerable
Enumerable module.
VALUE rb_obj_class(VALUE obj)
Queries the class of an object.
VALUE rb_obj_dup(VALUE obj)
Duplicates the given object.
VALUE rb_inspect(VALUE obj)
Generates a human-readable textual representation of the given object.
VALUE rb_obj_is_instance_of(VALUE obj, VALUE klass)
Queries if the given object is a direct instance of the given class.
VALUE rb_obj_is_kind_of(VALUE obj, VALUE klass)
Queries if the given object is an instance (of possibly descendants) of the given class.
VALUE rb_cString
String class.
#define RB_OBJ_WRITTEN(old, oldv, young)
Identical to RB_OBJ_WRITE(), except it doesn't write any values, but only a WB declaration.
VALUE rb_str_export_to_enc(VALUE obj, rb_encoding *enc)
Identical to rb_str_export(), except it additionally takes an encoding.
VALUE rb_funcall_passing_block(VALUE recv, ID mid, int argc, const VALUE *argv)
Identical to rb_funcallv_public(), except you can pass the passed block.
VALUE rb_funcall(VALUE recv, ID mid, int n,...)
Calls a method.
VALUE rb_ary_new_capa(long capa)
Identical to rb_ary_new(), except it additionally specifies how many rooms of objects it should alloc...
VALUE rb_ary_push(VALUE ary, VALUE elem)
Special case of rb_ary_cat() that it adds only one element.
VALUE rb_ary_freeze(VALUE obj)
Freeze an array, preventing further modifications.
VALUE rb_ary_join(VALUE ary, VALUE sep)
Recursively stringises the elements of the passed array, flattens that result, then joins the sequenc...
#define RETURN_SIZED_ENUMERATOR(obj, argc, argv, size_fn)
This roughly resembles return enum_for(__callee__) unless block_given?.
static int rb_check_arity(int argc, int min, int max)
Ensures that the passed integer is in the passed range.
void rb_provide(const char *feature)
Declares that the given feature is already provided by someone else.
void rb_marshal_define_compat(VALUE newclass, VALUE oldclass, VALUE(*dumper)(VALUE), VALUE(*loader)(VALUE, VALUE))
Marshal format compatibility layer.
size_t rb_set_size(VALUE set)
Returns the number of elements in the set.
VALUE rb_set_clear(VALUE set)
Removes all entries from set.
bool rb_set_delete(VALUE set, VALUE element)
Removes the element from from set.
bool rb_set_add(VALUE set, VALUE element)
Adds element to set.
void rb_set_foreach(VALUE set, int(*func)(VALUE element, VALUE arg), VALUE arg)
Iterates over a set.
bool rb_set_lookup(VALUE set, VALUE element)
Whether the set contains the given element.
VALUE rb_set_new(void)
Creates a new, empty set object.
VALUE rb_set_new_capa(size_t capa)
Identical to rb_set_new(), except it additionally specifies how many elements it is expected to conta...
#define rb_hash_uint(h, i)
Just another name of st_hash_uint.
VALUE rb_str_buf_append(VALUE dst, VALUE src)
Identical to rb_str_cat_cstr(), except it takes Ruby's string instead of C's.
VALUE rb_str_buf_cat_ascii(VALUE dst, const char *src)
Identical to rb_str_cat_cstr(), except it additionally assumes the source string be a NUL terminated ...
VALUE rb_exec_recursive(VALUE(*f)(VALUE g, VALUE h, int r), VALUE g, VALUE h)
"Recursion" API entry point.
VALUE rb_exec_recursive_paired(VALUE(*f)(VALUE g, VALUE h, int r), VALUE g, VALUE p, VALUE h)
Identical to rb_exec_recursive(), except it checks for the recursion on the ordered pair of { g,...
VALUE rb_const_get(VALUE space, ID name)
Identical to rb_const_defined(), except it returns the actual defined value.
VALUE rb_ivar_set(VALUE obj, ID name, VALUE val)
Identical to rb_iv_set(), except it accepts the name as an ID instead of a C string.
VALUE rb_ivar_get(VALUE obj, ID name)
Identical to rb_iv_get(), except it accepts the name as an ID instead of a C string.
VALUE rb_class_path(VALUE mod)
Identical to rb_mod_name(), except it returns #<Class: ...> style inspection for anonymous modules.
int rb_respond_to(VALUE obj, ID mid)
Queries if the object responds to the method.
void rb_define_alloc_func(VALUE klass, rb_alloc_func_t func)
Sets the allocator function of a class.
static ID rb_intern_const(const char *str)
This is a "tiny optimisation" over rb_intern().
int capa
Designed capacity of the buffer.
#define RB_BLOCK_CALL_FUNC_ARGLIST(yielded_arg, callback_arg)
Shim for block function parameters.
VALUE rb_yield_values(int n,...)
Identical to rb_yield(), except it takes variadic number of parameters and pass them to the block.
VALUE rb_yield(VALUE val)
Yields the block.
VALUE rb_block_call(VALUE q, ID w, int e, const VALUE *r, type *t, VALUE y)
Call a method with a block.
VALUE type(ANYARGS)
ANYARGS-ed function type.
VALUE rb_ensure(type *q, VALUE w, type *e, VALUE r)
An equivalent of ensure clause.
#define RARRAY_LEN
Just another name of rb_array_len.
#define RARRAY_PTR_USE(ary, ptr_name, expr)
Declares a section of code where raw pointers are used.
#define RARRAY_AREF(a, i)
#define RBASIC(obj)
Convenient casting macro.
#define TypedData_Get_Struct(obj, type, data_type, sval)
Obtains a C struct from inside of a wrapper Ruby object.
#define TypedData_Make_Struct(klass, type, data_type, sval)
Identical to TypedData_Wrap_Struct, except it allocates a new data region internally instead of takin...
VALUE rb_require(const char *feature)
Identical to rb_require_string(), except it takes C's string instead of Ruby's.
#define RTEST
This is an old name of RB_TEST.
This is the struct that holds necessary info for a struct.
const char * wrap_struct_name
Name of structs of this kind.
set_table_entry * entries
Array of size 2^entry_power.
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
uintptr_t VALUE
Type that represents a Ruby object.
static void Check_Type(VALUE v, enum ruby_value_type t)
Identical to RB_TYPE_P(), except it raises exceptions on predication failure.
static bool RB_TYPE_P(VALUE obj, enum ruby_value_type t)
Queries if the given object is of given type.