15#include "ruby/internal/config.h"
23#include "internal/class.h"
24#include "internal/enumerator.h"
25#include "internal/error.h"
26#include "internal/hash.h"
27#include "internal/imemo.h"
28#include "internal/numeric.h"
29#include "internal/range.h"
30#include "internal/rational.h"
164static VALUE rb_cLazy;
165static ID id_rewind, id_to_enum, id_each_entry;
166static ID id_next, id_result, id_receiver, id_arguments, id_memo, id_method, id_force;
167static VALUE sym_each, sym_yield;
169static VALUE lazy_use_super_method;
171extern ID ruby_static_id_cause;
173#define id_call idCall
174#define id_cause ruby_static_id_cause
175#define id_each idEach
177#define id_initialize idInitialize
178#define id_size idSize
197RUBY_REFERENCES(enumerator_refs) = {
210static VALUE rb_cGenerator, rb_cYielder, rb_cEnumProducer;
231 lazyenum_proc_func *proc;
232 lazyenum_size_func *size;
233 lazyenum_precheck_func *precheck;
245static VALUE rb_cEnumChain;
252static VALUE rb_cEnumProduct;
263 RUBY_REFS_LIST_PTR(enumerator_refs),
268 0, NULL, RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED | RUBY_TYPED_DECL_MARKING | RUBY_TYPED_EMBEDDABLE
272enumerator_ptr(
VALUE obj)
277 if (!ptr || UNDEF_P(ptr->obj)) {
278 rb_raise(rb_eArgError,
"uninitialized enumerator");
284proc_entry_mark_and_move(
void *p)
287 rb_gc_mark_and_move(&ptr->proc);
288 rb_gc_mark_and_move(&ptr->memo);
294 proc_entry_mark_and_move,
297 proc_entry_mark_and_move,
299 0, 0, RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED | RUBY_TYPED_EMBEDDABLE
382 enumerator = rb_enumeratorize_with_size(obj, meth, argc, argv, 0);
390enumerator_allocate(
VALUE klass)
406 rb_check_frozen(enum_obj);
410 rb_raise(rb_eArgError,
"unallocated enumerator");
422 ptr->size_fn = size_fn;
423 ptr->kw_splat = kw_splat;
429convert_to_feasible_size_value(
VALUE obj)
471enumerator_initialize(
int argc,
VALUE *argv,
VALUE obj)
474 VALUE recv = generator_init(generator_allocate(rb_cGenerator), iter);
476 VALUE size = convert_to_feasible_size_value(arg0);
478 return enumerator_init(obj, recv, sym_each, 0, 0, 0, size,
false);
488 ptr0 = enumerator_ptr(orig);
497 rb_raise(rb_eArgError,
"unallocated enumerator");
501 ptr1->meth = ptr0->meth;
507 ptr1->size_fn = ptr0->size_fn;
518 return rb_enumeratorize_with_size(obj, meth, argc, argv, 0);
522static int lazy_precheck(
VALUE procs);
530 base_class = rb_cLazy;
533 obj = enumerator_init(enumerator_allocate(
rb_cEnumerator), obj, sym_each, 0, 0, 0,
Qnil,
false);
536 return enumerator_init(enumerator_allocate(base_class),
537 obj, meth, argc, argv, size_fn,
Qnil, kw_splat);
543 return rb_enumeratorize_with_size_kw(obj, meth, argc, argv, size_fn,
rb_keyword_given_p());
550 const VALUE *argv = 0;
551 const struct enumerator *e = enumerator_ptr(obj);
554 VALUE args = e->args;
604enumerator_each(
int argc,
VALUE *argv,
VALUE obj)
611#if SIZEOF_INT < SIZEOF_LONG
627 if (!lazy_precheck(e->procs))
return Qnil;
629 return enumerator_block_call(obj, 0, obj);
635 struct MEMO *memo = (
struct MEMO *)m;
636 VALUE idx = memo->v1;
637 MEMO_V1_SET(memo, rb_int_succ(idx));
646enumerator_size(
VALUE obj);
651 return enumerator_size(obj);
667enumerator_with_index(
int argc,
VALUE *argv,
VALUE obj)
674 return enumerator_block_call(obj, enumerator_with_index_i, (
VALUE)MEMO_NEW(memo, 0, 0));
688enumerator_each_with_index(
VALUE obj)
690 return enumerator_with_index(0, NULL, obj);
735 enumerator_block_call(obj, enumerator_with_object_i, memo);
746 rb_fiber_yield(1, &args);
747 if (!UNDEF_P(e->feedvalue)) {
748 feedvalue = e->feedvalue;
764 return rb_fiber_yield(1, &nil);
770 VALUE curr = rb_fiber_current();
782 VALUE exc = e->stop_exc;
783 VALUE result = rb_attr_get(exc, id_result);
784 VALUE mesg = rb_attr_get(exc, idMesg);
792 curr = rb_fiber_current();
794 if (!e->fib || !rb_fiber_alive_p(e->fib)) {
798 vs = rb_fiber_resume(e->fib, 1, &curr);
855enumerator_next_values(
VALUE obj)
860 rb_check_frozen(obj);
862 if (!UNDEF_P(e->lookahead)) {
868 return get_next_values(obj, e);
872ary2sv(
VALUE args,
int dup)
912enumerator_next(
VALUE obj)
914 VALUE vs = enumerator_next_values(obj);
915 return ary2sv(vs, 0);
919enumerator_peek_values(
VALUE obj)
923 rb_check_frozen(obj);
925 if (UNDEF_P(e->lookahead)) {
926 RB_OBJ_WRITE(obj, &e->lookahead, get_next_values(obj, e));
963enumerator_peek_values_m(
VALUE obj)
965 return rb_ary_dup(enumerator_peek_values(obj));
993enumerator_peek(
VALUE obj)
995 VALUE vs = enumerator_peek_values(obj);
996 return ary2sv(vs, 1);
1050 rb_check_frozen(obj);
1052 if (!UNDEF_P(e->feedvalue)) {
1070enumerator_rewind(
VALUE obj)
1074 rb_check_frozen(obj);
1090inspect_enumerator(
VALUE obj,
VALUE dummy,
int recur)
1093 VALUE eobj, str, cname;
1099 if (!e || UNDEF_P(e->obj)) {
1100 return rb_sprintf(
"#<%"PRIsVALUE
": uninitialized>",
rb_class_path(cname));
1104 str = rb_sprintf(
"#<%"PRIsVALUE
": ...>",
rb_class_path(cname));
1111 eobj = generator_ptr(e->obj)->obj;
1117 str = rb_sprintf(
"#<%"PRIsVALUE
": %+"PRIsVALUE
">",
rb_class_path(cname), eobj);
1120 str = rb_sprintf(
"#<%"PRIsVALUE
": %"PRIsVALUE, cname, str);
1121 append_method(
RARRAY_AREF(e->procs, i), str, e->meth, e->args);
1127 eobj = rb_attr_get(obj, id_receiver);
1133 str = rb_sprintf(
"#<%"PRIsVALUE
": %+"PRIsVALUE,
rb_class_path(cname), eobj);
1134 append_method(obj, str, e->meth, e->args);
1144 if (
SYMBOL_P(key))
return ST_CONTINUE;
1145 *(
int *)arg = FALSE;
1153 rb_str_catf(str,
"% "PRIsVALUE
": %"PRIsVALUE
", ", key, val);
1160 VALUE method, eargs;
1162 method = rb_attr_get(obj, id_method);
1164 if (!
NIL_P(method)) {
1169 method = rb_id2str(default_method);
1175 eargs = rb_attr_get(obj, id_arguments);
1177 eargs = default_args;
1191 if (all_key) kwds = argv[--argc];
1195 VALUE arg = *argv++;
1219enumerator_inspect(
VALUE obj)
1236enumerator_size(
VALUE obj)
1240 const VALUE *argv = NULL;
1244 struct generator *g = generator_ptr(e->obj);
1250 struct proc_entry *entry = proc_entry_ptr(proc);
1251 lazyenum_size_func *size_fn = entry->fn->size;
1255 receiver = (*size_fn)(proc, receiver);
1261 return (*e->size_fn)(e->obj, e->args, obj);
1268 if (!UNDEF_P(size))
return size;
1276yielder_mark_and_move(
void *p)
1279 rb_gc_mark_and_move(&ptr->proc);
1285 yielder_mark_and_move,
1288 yielder_mark_and_move,
1290 0, 0, RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED | RUBY_TYPED_EMBEDDABLE
1294yielder_ptr(
VALUE obj)
1299 if (!ptr || UNDEF_P(ptr->proc)) {
1300 rb_raise(rb_eArgError,
"uninitialized yielder");
1307yielder_allocate(
VALUE klass)
1326 rb_raise(rb_eArgError,
"unallocated yielder");
1336yielder_initialize(
VALUE obj)
1347 struct yielder *ptr = yielder_ptr(obj);
1356 struct yielder *ptr = yielder_ptr(obj);
1376yielder_to_proc(
VALUE obj)
1392 return yielder_init(yielder_allocate(rb_cYielder),
rb_proc_new(yielder_yield_i, 0));
1399generator_mark_and_move(
void *p)
1402 rb_gc_mark_and_move(&ptr->proc);
1403 rb_gc_mark_and_move(&ptr->obj);
1409 generator_mark_and_move,
1412 generator_mark_and_move,
1414 0, 0, RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED | RUBY_TYPED_EMBEDDABLE
1418generator_ptr(
VALUE obj)
1423 if (!ptr || UNDEF_P(ptr->proc)) {
1424 rb_raise(rb_eArgError,
"uninitialized generator");
1431generator_allocate(
VALUE klass)
1447 rb_check_frozen(obj);
1451 rb_raise(rb_eArgError,
"unallocated generator");
1461generator_initialize(
int argc,
VALUE *argv,
VALUE obj)
1475 "wrong argument type %"PRIsVALUE
" (expected Proc)",
1479 rb_warn(
"given block not used");
1483 return generator_init(obj, proc);
1494 ptr0 = generator_ptr(orig);
1499 rb_raise(rb_eArgError,
"unallocated generator");
1509generator_each(
int argc,
VALUE *argv,
VALUE obj)
1511 struct generator *ptr = generator_ptr(obj);
1524enum_size(
VALUE self)
1527 return UNDEF_P(r) ?
Qnil : r;
1533 return enum_size(self);
1536#define lazy_receiver_size lazy_map_size
1567 rb_block_call(m, id_each, argc-1, argv+1, lazy_init_iterator, val);
1571#define memo_value v2
1572#define memo_flags u3.state
1573#define LAZY_MEMO_BREAK 1
1574#define LAZY_MEMO_PACKED 2
1575#define LAZY_MEMO_BREAK_P(memo) ((memo)->memo_flags & LAZY_MEMO_BREAK)
1576#define LAZY_MEMO_PACKED_P(memo) ((memo)->memo_flags & LAZY_MEMO_PACKED)
1577#define LAZY_MEMO_SET_BREAK(memo) ((memo)->memo_flags |= LAZY_MEMO_BREAK)
1578#define LAZY_MEMO_RESET_BREAK(memo) ((memo)->memo_flags &= ~LAZY_MEMO_BREAK)
1579#define LAZY_MEMO_SET_VALUE(memo, value) MEMO_V2_SET(memo, value)
1580#define LAZY_MEMO_SET_PACKED(memo) ((memo)->memo_flags |= LAZY_MEMO_PACKED)
1581#define LAZY_MEMO_RESET_PACKED(memo) ((memo)->memo_flags &= ~LAZY_MEMO_PACKED)
1583#define LAZY_NEED_BLOCK(func) \
1584 if (!rb_block_given_p()) { \
1585 rb_raise(rb_eArgError, "tried to call lazy " #func " without a block"); \
1596 struct MEMO *result;
1598 result = MEMO_NEW(m, rb_enum_values_pack(argc, argv),
1599 argc > 1 ? LAZY_MEMO_PACKED : 0);
1600 return lazy_yielder_result(result,
yielder, procs_array, memos, 0);
1604lazy_yielder_yield(
struct MEMO *result,
long memo_index,
int argc,
const VALUE *argv)
1606 VALUE m = result->v1;
1610 LAZY_MEMO_SET_VALUE(result, rb_enum_values_pack(argc, argv));
1612 LAZY_MEMO_SET_PACKED(result);
1614 LAZY_MEMO_RESET_PACKED(result);
1615 return lazy_yielder_result(result,
yielder, procs_array, memos, memo_index);
1625 struct proc_entry *entry = proc_entry_ptr(proc);
1626 if (!(*entry->fn->proc)(proc, result, memos, i)) {
1635 if (LAZY_MEMO_BREAK_P(result)) {
1638 return result->memo_value;
1661 struct generator *old_gen_ptr = generator_ptr(e->obj);
1662 obj = old_gen_ptr->obj;
1668 generator = generator_allocate(rb_cGenerator);
1680lazy_precheck(
VALUE procs)
1683 long num_procs =
RARRAY_LEN(procs), i = num_procs;
1686 struct proc_entry *entry = proc_entry_ptr(proc);
1687 lazyenum_precheck_func *precheck = entry->fn->precheck;
1688 if (precheck && !precheck(proc))
return FALSE;
1785lazy_initialize(
int argc,
VALUE *argv,
VALUE self)
1791 LAZY_NEED_BLOCK(
new);
1796 generator = generator_allocate(rb_cGenerator);
1798 enumerator_init(self,
generator, sym_each, 0, 0, 0, size, 0);
1814lazy_to_a(
VALUE self)
1822 ID id = rb_frame_this_func();
1838 lazy_set_args(lazy, args);
1839 e->size_fn = size_fn;
1850 VALUE new_generator;
1855 &proc_entry_data_type, entry);
1862 lazy_set_args(entry_obj, memo);
1865 new_generator = lazy_generator_init(obj, new_procs);
1868 new_obj = enumerator_init_copy(enumerator_allocate(rb_cLazy), obj);
1869 new_e = RTYPEDDATA_GET_DATA(new_obj);
1878 new_e->meth = id_each;
1916enumerable_lazy(
VALUE obj)
1927 return enumerator_init(enumerator_allocate(rb_cLazy),
1928 obj, meth, argc, argv, size_fn,
Qnil, kw_splat);
1955lazy_to_enum(
int argc,
VALUE *argv,
VALUE self)
1957 VALUE lazy, meth = sym_each, super_meth;
1963 if (
RTEST((super_meth = rb_hash_aref(lazy_use_super_method, meth)))) {
1976 return enum_size(self);
1987lazy_eager(
VALUE self)
1990 self, sym_each, 0, 0, lazy_eager_size,
Qnil, 0);
2005 const VALUE *argv = &result->memo_value;
2006 if (LAZY_MEMO_PACKED_P(result)) {
2007 const VALUE args = *argv;
2018 LAZY_MEMO_SET_VALUE(result, value);
2019 LAZY_MEMO_RESET_PACKED(result);
2030 lazy_map_proc, lazy_map_size,
2049 LAZY_NEED_BLOCK(map);
2050 return lazy_add_method(obj, 0, 0,
Qnil,
Qnil, &lazy_map_funcs);
2054 struct MEMO *result;
2063 return lazy_yielder_yield(arg->result, arg->index, argc, argv);
2071 const long proc_index = memo_index + 1;
2072 int break_p = LAZY_MEMO_BREAK_P(result);
2078 struct flat_map_i_arg arg = {.result = result, .index = proc_index};
2079 LAZY_MEMO_RESET_BREAK(result);
2081 if (break_p) LAZY_MEMO_SET_BREAK(result);
2087 LAZY_MEMO_RESET_BREAK(result);
2090 lazy_yielder_yield(result, proc_index, 1, &argv);
2092 if (break_p) LAZY_MEMO_SET_BREAK(result);
2096 LAZY_MEMO_SET_VALUE(result, value);
2097 LAZY_MEMO_RESET_PACKED(result);
2102 lazy_flat_map_proc, 0,
2129lazy_flat_map(
VALUE obj)
2131 LAZY_NEED_BLOCK(flat_map);
2132 return lazy_add_method(obj, 0, 0,
Qnil,
Qnil, &lazy_flat_map_funcs);
2139 if (!
RTEST(chain))
return 0;
2144 lazy_select_proc, 0,
2156lazy_select(
VALUE obj)
2158 LAZY_NEED_BLOCK(select);
2159 return lazy_add_method(obj, 0, 0,
Qnil,
Qnil, &lazy_select_funcs);
2166 if (!
RTEST(value))
return 0;
2167 LAZY_MEMO_SET_VALUE(result, value);
2168 LAZY_MEMO_RESET_PACKED(result);
2173 lazy_filter_map_proc, 0,
2187lazy_filter_map(
VALUE obj)
2189 LAZY_NEED_BLOCK(filter_map);
2190 return lazy_add_method(obj, 0, 0,
Qnil,
Qnil, &lazy_filter_map_funcs);
2197 if (
RTEST(chain))
return 0;
2202 lazy_reject_proc, 0,
2213lazy_reject(
VALUE obj)
2215 LAZY_NEED_BLOCK(reject);
2216 return lazy_add_method(obj, 0, 0,
Qnil,
Qnil, &lazy_reject_funcs);
2224 if (!
RTEST(chain))
return 0;
2232 VALUE value, chain =
rb_funcall(entry->memo, id_eqq, 1, result->memo_value);
2234 if (!
RTEST(chain))
return 0;
2236 LAZY_MEMO_SET_VALUE(result, value);
2237 LAZY_MEMO_RESET_PACKED(result);
2243 lazy_grep_iter_proc, 0,
2262 &lazy_grep_iter_funcs : &lazy_grep_funcs;
2263 return lazy_add_method(obj, 0, 0, pattern,
rb_ary_new3(1, pattern), funcs);
2271 if (
RTEST(chain))
return 0;
2279 VALUE value, chain =
rb_funcall(entry->memo, id_eqq, 1, result->memo_value);
2281 if (
RTEST(chain))
return 0;
2283 LAZY_MEMO_SET_VALUE(result, value);
2284 LAZY_MEMO_RESET_PACKED(result);
2290 lazy_grep_v_iter_proc, 0,
2294 lazy_grep_v_proc, 0,
2309 &lazy_grep_v_iter_funcs : &lazy_grep_v_funcs;
2310 return lazy_add_method(obj, 0, 0, pattern,
rb_ary_new3(1, pattern), funcs);
2329 VALUE ary, arrays = entry->memo;
2338 LAZY_MEMO_SET_VALUE(result, ary);
2348 VALUE zip_args = entry->memo;
2367 LAZY_MEMO_SET_VALUE(result, ary);
2372 {lazy_zip_func, lazy_receiver_size,},
2373 {lazy_zip_arrays_func, lazy_receiver_size,},
2396 for (i = 0; i < argc; i++) {
2399 for (; i < argc; i++) {
2401 rb_raise(
rb_eTypeError,
"wrong argument type %"PRIsVALUE
" (must respond to :each)",
2406 funcs = &lazy_zip_funcs[0];
2412 return lazy_add_method(obj, 0, 0, ary, ary, funcs);
2427 if (--remain == 0) LAZY_MEMO_SET_BREAK(result);
2445 return entry->memo !=
INT2FIX(0);
2449 lazy_take_proc, lazy_take_size, lazy_take_precheck,
2465 rb_raise(rb_eArgError,
"attempt to take negative size");
2470 return lazy_add_method(obj, 0, 0, n,
rb_ary_new3(1, n), &lazy_take_funcs);
2478 LAZY_MEMO_SET_BREAK(result);
2485 lazy_take_while_proc, 0,
2496lazy_take_while(
VALUE obj)
2498 LAZY_NEED_BLOCK(take_while);
2499 return lazy_add_method(obj, 0, 0,
Qnil,
Qnil, &lazy_take_while_funcs);
2506 if (
NIL_P(receiver))
2536 lazy_drop_proc, lazy_drop_size,
2555 rb_raise(rb_eArgError,
"attempt to drop negative size");
2558 return lazy_add_method(obj, 2, argv, n,
rb_ary_new3(1, n), &lazy_drop_funcs);
2573 if (
RTEST(drop))
return 0;
2580 lazy_drop_while_proc, 0,
2591lazy_drop_while(
VALUE obj)
2593 LAZY_NEED_BLOCK(drop_while);
2594 return lazy_add_method(obj, 0, 0,
Qfalse,
Qnil, &lazy_drop_while_funcs);
2598lazy_uniq_check(
VALUE chain,
VALUE memos,
long memo_index)
2607 return rb_hash_add_new_element(hash, chain,
Qfalse);
2613 if (lazy_uniq_check(result->memo_value, memos, memo_index))
return 0;
2622 if (lazy_uniq_check(chain, memos, memo_index))
return 0;
2627 lazy_uniq_iter_proc, 0,
2647 return lazy_add_method(obj, 0, 0,
Qnil,
Qnil, funcs);
2653 if (
NIL_P(result->memo_value))
return 0;
2658 lazy_compact_proc, 0,
2669lazy_compact(
VALUE obj)
2671 return lazy_add_method(obj, 0, 0,
Qnil,
Qnil, &lazy_compact_funcs);
2685 argv[0] = result->memo_value;
2689 LAZY_MEMO_RESET_PACKED(result);
2693 LAZY_MEMO_SET_PACKED(result);
2700lazy_with_index_size(
VALUE proc,
VALUE receiver)
2706 lazy_with_index_proc, lazy_with_index_size,
2727lazy_with_index(
int argc,
VALUE *argv,
VALUE obj)
2747lazy_chunk(
VALUE self)
2758lazy_chunk_while(
VALUE self)
2770lazy_slice_after(
VALUE self)
2782lazy_slice_before(
VALUE self)
2793lazy_slice_when(
VALUE self)
2865stop_result(
VALUE self)
2867 return rb_attr_get(self, id_result);
2875producer_mark_and_move(
void *p)
2878 rb_gc_mark_and_move(&ptr->init);
2879 rb_gc_mark_and_move(&ptr->proc);
2880 rb_gc_mark_and_move(&ptr->size);
2883#define producer_free RUBY_TYPED_DEFAULT_FREE
2886producer_memsize(
const void *p)
2894 producer_mark_and_move,
2897 producer_mark_and_move,
2899 0, 0, RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED | RUBY_TYPED_EMBEDDABLE
2903producer_ptr(
VALUE obj)
2908 if (!ptr || UNDEF_P(ptr->proc)) {
2909 rb_raise(rb_eArgError,
"uninitialized producer");
2916producer_allocate(
VALUE klass)
2937 rb_raise(rb_eArgError,
"unallocated producer");
2950 return rb_attr_get(exc, id_result);
2953NORETURN(
static VALUE producer_each_i(
VALUE obj));
2956producer_each_i(
VALUE obj)
2959 VALUE init, proc, curr;
2961 ptr = producer_ptr(obj);
2965 if (UNDEF_P(init)) {
2983producer_each(
VALUE obj)
2993 struct producer *ptr = producer_ptr(obj);
2994 VALUE size = ptr->size;
3055enumerator_s_produce(
int argc,
VALUE *argv,
VALUE klass)
3062 keyword_ids[0] = rb_intern(
"size");
3066 size = UNDEF_P(size) ?
Qnil : convert_to_feasible_size_value(size);
3068 if (argc == 0 || (argc == 1 && !
NIL_P(opts))) {
3088enum_chain_mark_and_move(
void *p)
3091 rb_gc_mark_and_move(&ptr->enums);
3094#define enum_chain_free RUBY_TYPED_DEFAULT_FREE
3097enum_chain_memsize(
const void *p)
3105 enum_chain_mark_and_move,
3108 enum_chain_mark_and_move,
3110 0, 0, RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED
3114enum_chain_ptr(
VALUE obj)
3119 if (!ptr || UNDEF_P(ptr->enums)) {
3120 rb_raise(rb_eArgError,
"uninitialized chain");
3127enum_chain_allocate(
VALUE klass)
3155 rb_check_frozen(obj);
3158 if (!ptr) rb_raise(rb_eArgError,
"unallocated chain");
3167new_enum_chain(
VALUE enums)
3170 VALUE obj = enum_chain_initialize(enum_chain_allocate(rb_cEnumChain), enums);
3174 return enumerable_lazy(obj);
3188 ptr0 = enum_chain_ptr(orig);
3192 if (!ptr1) rb_raise(rb_eArgError,
"unallocated chain");
3195 ptr1->pos = ptr0->pos;
3201enum_chain_total_size(
VALUE enums)
3232enum_chain_size(
VALUE obj)
3234 return enum_chain_total_size(enum_chain_ptr(obj)->enums);
3240 return enum_chain_size(obj);
3262enum_chain_each(
int argc,
VALUE *argv,
VALUE obj)
3270 objptr = enum_chain_ptr(obj);
3271 enums = objptr->enums;
3291enum_chain_rewind(
VALUE obj)
3293 struct enum_chain *objptr = enum_chain_ptr(obj);
3294 VALUE enums = objptr->enums;
3297 for (i = objptr->pos; 0 <= i && i <
RARRAY_LEN(enums); objptr->pos = --i) {
3305inspect_enum_chain(
VALUE obj,
VALUE dummy,
int recur)
3312 if (!ptr || UNDEF_P(ptr->enums)) {
3313 return rb_sprintf(
"#<%"PRIsVALUE
": uninitialized>",
rb_class_path(klass));
3317 return rb_sprintf(
"#<%"PRIsVALUE
": ...>",
rb_class_path(klass));
3320 return rb_sprintf(
"#<%"PRIsVALUE
": %+"PRIsVALUE
">",
rb_class_path(klass), ptr->enums);
3330enum_chain_inspect(
VALUE obj)
3350 return new_enum_chain(enums);
3366 return new_enum_chain(rb_ary_new_from_args(2, obj, eobj));
3382 rb_raise(rb_eArgError,
"cannot convert an infinite enumerator to a set");
3421enum_product_mark_and_move(
void *p)
3424 rb_gc_mark_and_move(&ptr->enums);
3427#define enum_product_free RUBY_TYPED_DEFAULT_FREE
3430enum_product_memsize(
const void *p)
3438 enum_product_mark_and_move,
3440 enum_product_memsize,
3441 enum_product_mark_and_move,
3443 0, 0, RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED
3447enum_product_ptr(
VALUE obj)
3452 if (!ptr || UNDEF_P(ptr->enums)) {
3453 rb_raise(rb_eArgError,
"uninitialized product");
3460enum_product_allocate(
VALUE klass)
3483enum_product_initialize(
int argc,
VALUE *argv,
VALUE obj)
3491 rb_exc_raise(rb_keyword_error_new(
"unknown", rb_hash_keys(options)));
3494 rb_check_frozen(obj);
3497 if (!ptr) rb_raise(rb_eArgError,
"unallocated product");
3511 ptr0 = enum_product_ptr(orig);
3515 if (!ptr1) rb_raise(rb_eArgError,
"unallocated product");
3523enum_product_total_size(
VALUE enums)
3563enum_product_size(
VALUE obj)
3565 return enum_product_total_size(enum_product_ptr(obj)->enums);
3571 return enum_product_size(obj);
3588 pstate->argv[pstate->index++] = value;
3590 VALUE val = product_each(pstate->obj, pstate);
3599 VALUE enums = ptr->enums;
3601 if (pstate->index < pstate->argc) {
3626 return product_each(obj, &state);
3642enum_product_each(
VALUE obj)
3658enum_product_rewind(
VALUE obj)
3661 VALUE enums = ptr->enums;
3672inspect_enum_product(
VALUE obj,
VALUE dummy,
int recur)
3679 if (!ptr || UNDEF_P(ptr->enums)) {
3680 return rb_sprintf(
"#<%"PRIsVALUE
": uninitialized>",
rb_class_path(klass));
3684 return rb_sprintf(
"#<%"PRIsVALUE
": ...>",
rb_class_path(klass));
3687 return rb_sprintf(
"#<%"PRIsVALUE
": %+"PRIsVALUE
">",
rb_class_path(klass), ptr->enums);
3697enum_product_inspect(
VALUE obj)
3719enumerator_s_product(
int argc,
VALUE *argv,
VALUE klass)
3723 rb_scan_args(argc, argv,
"*:&", &enums, &options, &block);
3726 rb_exc_raise(rb_keyword_error_new(
"unknown", rb_hash_keys(options)));
3729 VALUE obj = enum_product_initialize(argc, argv, enum_product_allocate(rb_cEnumProduct));
3731 if (!
NIL_P(block)) {
3732 enum_product_run(obj, block);
3747RUBY_REFERENCES(arith_seq_refs) = {
3765 "arithmetic_sequence",
3767 RUBY_REFS_LIST_PTR(arith_seq_refs),
3772 .parent = &enumerator_data_type,
3773 .
flags = RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED | RUBY_TYPED_DECL_MARKING | RUBY_TYPED_EMBEDDABLE
3777arith_seq_allocate(
VALUE klass)
3783 ptr->enumerator.obj =
Qundef;
3805 VALUE aseq = enumerator_init(arith_seq_allocate(rb_cArithSeq),
3813 ptr->exclude_end = excl;
3825arith_seq_begin(
VALUE self)
3838arith_seq_end(
VALUE self)
3852arith_seq_step(
VALUE self)
3865arith_seq_exclude_end(
VALUE self)
3869 return RBOOL(ptr->exclude_end);
3873arith_seq_exclude_end_p(
VALUE self)
3877 return ptr->exclude_end;
3884 component->
begin = arith_seq_begin(obj);
3885 component->
end = arith_seq_end(obj);
3886 component->
step = arith_seq_step(obj);
3887 component->
exclude_end = arith_seq_exclude_end_p(obj);
3899rb_arithmetic_sequence_beg_len_step(
VALUE obj,
long *begp,
long *lenp,
long *stepp,
long len,
int err)
3901 RBIMPL_NONNULL_ARG(begp);
3902 RBIMPL_NONNULL_ARG(lenp);
3903 RBIMPL_NONNULL_ARG(stepp);
3906 if (!rb_arithmetic_sequence_extract(obj, &aseq)) {
3926 if (err == 0 && (step < -1 || step > 1)) {
3953 rb_raise(rb_eArgError,
"attempt to take negative size");
3959 b = arith_seq_begin(self);
3960 e = arith_seq_end(self);
3961 s = arith_seq_step(self);
3962 x = arith_seq_exclude_end_p(self);
3976 b = rb_big_plus(b, s);
3994 while (n > 0 && i < end) {
3996 if (i + unit < i)
break;
4007 while (n > 0 && i > end) {
4009 if (i + unit > i)
break;
4021 double end =
NIL_P(e) ? (unit < 0 ? -1 : 1)*HUGE_VAL :
NUM2DBL(e);
4022 double len = ruby_float_step_size(beg, end, unit, x);
4037 else if (unit == 0) {
4040 for (i = 0; i <
len; ++i) {
4046 for (i = 0; i < n; ++i) {
4047 double d = i*unit+beg;
4048 if (unit >= 0 ? end < d : d < end) d = end;
4072arith_seq_first(
int argc,
VALUE *argv,
VALUE self)
4078 b = arith_seq_begin(self);
4079 e = arith_seq_end(self);
4080 s = arith_seq_step(self);
4098 return arith_seq_take(self, argv[0]);
4105 return rb_int_plus(a, b);
4108 return rb_float_plus(a, b);
4111 return rb_rational_plus(a, b);
4114 return rb_funcallv(a,
'+', 1, &b);
4122 return rb_int_minus(a, b);
4125 return rb_float_minus(a, b);
4128 return rb_rational_minus(a, b);
4131 return rb_funcallv(a,
'-', 1, &b);
4139 return rb_int_mul(a, b);
4142 return rb_float_mul(a, b);
4145 return rb_rational_mul(a, b);
4148 return rb_funcallv(a,
'*', 1, &b);
4157 q = rb_int_idiv(a, b);
4160 q = rb_float_div(a, b);
4163 q = rb_rational_div(a, b);
4166 q = rb_funcallv(a, idDiv, 1, &b);
4173 return rb_float_floor(q, 0);
4176 return rb_rational_floor(q, 0);
4192arith_seq_last(
int argc,
VALUE *argv,
VALUE self)
4194 VALUE b, e, s, len_1,
len, last, nv, ary;
4195 int last_is_adjusted;
4198 e = arith_seq_end(self);
4201 "cannot get the last element of endless arithmetic sequence");
4204 b = arith_seq_begin(self);
4205 s = arith_seq_step(self);
4207 len_1 = num_idiv(num_minus(e, b), s);
4208 if (rb_num_negative_int_p(len_1)) {
4215 last = num_plus(b, num_mul(s, len_1));
4216 if ((last_is_adjusted = arith_seq_exclude_end_p(self) &&
rb_equal(last, e))) {
4217 last = num_minus(last, s);
4224 if (last_is_adjusted) {
4240 rb_raise(rb_eArgError,
"negative array size");
4244 b = rb_int_minus(last, rb_int_mul(s, nv));
4246 b = rb_int_plus(b, s);
4261arith_seq_inspect(
VALUE self)
4264 VALUE eobj, str, eargs;
4269 eobj = rb_attr_get(self, id_receiver);
4275 str = rb_sprintf(
"(%s%"PRIsVALUE
"%s.", range_p ?
"(" :
"", eobj, range_p ?
")" :
"");
4279 eargs = rb_attr_get(eobj, id_arguments);
4295 if (all_key) kwds = argv[--argc];
4299 VALUE arg = *argv++;
4331 if (!
rb_equal(arith_seq_begin(self), arith_seq_begin(other))) {
4335 if (!
rb_equal(arith_seq_end(self), arith_seq_end(other))) {
4339 if (!
rb_equal(arith_seq_step(self), arith_seq_step(other))) {
4343 if (arith_seq_exclude_end_p(self) != arith_seq_exclude_end_p(other)) {
4361arith_seq_hash(
VALUE self)
4367 v = rb_hash(arith_seq_begin(self));
4369 v = rb_hash(arith_seq_end(self));
4371 v = rb_hash(arith_seq_step(self));
4378#define NUM_GE(x, y) RTEST(rb_num_coerce_relop((x), (y), idGE))
4393arith_seq_each(
VALUE self)
4395 VALUE c, e, s, len_1, last;
4400 c = arith_seq_begin(self);
4401 e = arith_seq_end(self);
4402 s = arith_seq_step(self);
4403 x = arith_seq_exclude_end_p(self);
4412 c = rb_int_plus(c, s);
4426 len_1 = num_idiv(num_minus(e, c), s);
4427 last = num_plus(c, num_mul(s, len_1));
4429 last = num_minus(last, s);
4432 if (rb_num_negative_int_p(s)) {
4433 while (NUM_GE(c, last)) {
4439 while (NUM_GE(last, c)) {
4456arith_seq_size(
VALUE self)
4461 b = arith_seq_begin(self);
4462 e = arith_seq_end(self);
4463 s = arith_seq_step(self);
4464 x = arith_seq_exclude_end_p(self);
4470 if (rb_num_negative_int_p(s)) {
4482 if (isinf(n))
return DBL2NUM(n);
4484 return rb_dbl2big(n);
4499 len_1 = rb_int_idiv(rb_int_minus(e, b), s);
4500 if (rb_num_negative_int_p(len_1)) {
4504 last = rb_int_plus(b, rb_int_mul(s, len_1));
4515#define sym(name) ID2SYM(rb_intern_const(name))
4517InitVM_Enumerator(
void)
4554 rb_define_alias(rb_cLazy,
"_enumerable_collect_concat",
"collect_concat");
4570 rb_funcall(rb_cLazy, id_private, 1, sym(
"_enumerable_map"));
4571 rb_funcall(rb_cLazy, id_private, 1, sym(
"_enumerable_collect"));
4572 rb_funcall(rb_cLazy, id_private, 1, sym(
"_enumerable_flat_map"));
4573 rb_funcall(rb_cLazy, id_private, 1, sym(
"_enumerable_collect_concat"));
4574 rb_funcall(rb_cLazy, id_private, 1, sym(
"_enumerable_select"));
4575 rb_funcall(rb_cLazy, id_private, 1, sym(
"_enumerable_find_all"));
4576 rb_funcall(rb_cLazy, id_private, 1, sym(
"_enumerable_filter"));
4577 rb_funcall(rb_cLazy, id_private, 1, sym(
"_enumerable_filter_map"));
4578 rb_funcall(rb_cLazy, id_private, 1, sym(
"_enumerable_reject"));
4579 rb_funcall(rb_cLazy, id_private, 1, sym(
"_enumerable_grep"));
4580 rb_funcall(rb_cLazy, id_private, 1, sym(
"_enumerable_grep_v"));
4581 rb_funcall(rb_cLazy, id_private, 1, sym(
"_enumerable_zip"));
4582 rb_funcall(rb_cLazy, id_private, 1, sym(
"_enumerable_take"));
4583 rb_funcall(rb_cLazy, id_private, 1, sym(
"_enumerable_take_while"));
4584 rb_funcall(rb_cLazy, id_private, 1, sym(
"_enumerable_drop"));
4585 rb_funcall(rb_cLazy, id_private, 1, sym(
"_enumerable_drop_while"));
4586 rb_funcall(rb_cLazy, id_private, 1, sym(
"_enumerable_uniq"));
4618 lazy_use_super_method = rb_hash_new_with_size(18);
4619 rb_hash_aset(lazy_use_super_method, sym(
"map"), sym(
"_enumerable_map"));
4620 rb_hash_aset(lazy_use_super_method, sym(
"collect"), sym(
"_enumerable_collect"));
4621 rb_hash_aset(lazy_use_super_method, sym(
"flat_map"), sym(
"_enumerable_flat_map"));
4622 rb_hash_aset(lazy_use_super_method, sym(
"collect_concat"), sym(
"_enumerable_collect_concat"));
4623 rb_hash_aset(lazy_use_super_method, sym(
"select"), sym(
"_enumerable_select"));
4624 rb_hash_aset(lazy_use_super_method, sym(
"find_all"), sym(
"_enumerable_find_all"));
4625 rb_hash_aset(lazy_use_super_method, sym(
"filter"), sym(
"_enumerable_filter"));
4626 rb_hash_aset(lazy_use_super_method, sym(
"filter_map"), sym(
"_enumerable_filter_map"));
4627 rb_hash_aset(lazy_use_super_method, sym(
"reject"), sym(
"_enumerable_reject"));
4628 rb_hash_aset(lazy_use_super_method, sym(
"grep"), sym(
"_enumerable_grep"));
4629 rb_hash_aset(lazy_use_super_method, sym(
"grep_v"), sym(
"_enumerable_grep_v"));
4630 rb_hash_aset(lazy_use_super_method, sym(
"zip"), sym(
"_enumerable_zip"));
4631 rb_hash_aset(lazy_use_super_method, sym(
"take"), sym(
"_enumerable_take"));
4632 rb_hash_aset(lazy_use_super_method, sym(
"take_while"), sym(
"_enumerable_take_while"));
4633 rb_hash_aset(lazy_use_super_method, sym(
"drop"), sym(
"_enumerable_drop"));
4634 rb_hash_aset(lazy_use_super_method, sym(
"drop_while"), sym(
"_enumerable_drop_while"));
4635 rb_hash_aset(lazy_use_super_method, sym(
"uniq"), sym(
"_enumerable_uniq"));
4636 rb_hash_aset(lazy_use_super_method, sym(
"with_index"), sym(
"_enumerable_with_index"));
4638 rb_vm_register_global_object(lazy_use_super_method);
4658 rb_define_method(rb_cGenerator,
"initialize_copy", generator_init_copy, 1);
4679 rb_define_method(rb_cEnumChain,
"initialize_copy", enum_chain_init_copy, 1);
4693 rb_define_method(rb_cEnumProduct,
"initialize", enum_product_initialize, -1);
4694 rb_define_method(rb_cEnumProduct,
"initialize_copy", enum_product_init_copy, 1);
4729Init_Enumerator(
void)
4741 sym_each =
ID2SYM(id_each);
#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.
void rb_include_module(VALUE klass, VALUE module)
Includes a module to a class.
VALUE rb_define_class(const char *name, VALUE super)
Defines a top-level class.
VALUE rb_define_class_under(VALUE outer, const char *name, VALUE super)
Defines a class under the namespace of outer.
void rb_define_alias(VALUE klass, const char *name1, const char *name2)
Defines an alias of a method.
void rb_need_block(void)
Declares that the current method needs a block.
void rb_undef_method(VALUE klass, const char *name)
Defines an undef of a method.
int rb_scan_args_kw(int kw_flag, int argc, const VALUE *argv, const char *fmt,...)
Identical to rb_scan_args(), except it also accepts kw_splat.
int rb_scan_args(int argc, const VALUE *argv, const char *fmt,...)
Retrieves argument from argc and argv to given VALUE references according to the format string.
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.
int rb_get_kwargs(VALUE keyword_hash, const ID *table, int required, int optional, VALUE *values)
Keyword argument deconstructor.
#define T_COMPLEX
Old name of RUBY_T_COMPLEX.
#define RB_INTEGER_TYPE_P
Old name of rb_integer_type_p.
#define rb_str_buf_cat2
Old name of rb_usascii_str_new_cstr.
#define OBJ_INIT_COPY(obj, orig)
Old name of RB_OBJ_INIT_COPY.
#define RFLOAT_VALUE
Old name of rb_float_value.
#define Qundef
Old name of RUBY_Qundef.
#define INT2FIX
Old name of RB_INT2FIX.
#define T_FLOAT
Old name of RUBY_T_FLOAT.
#define ID2SYM
Old name of RB_ID2SYM.
#define UNREACHABLE_RETURN
Old name of RBIMPL_UNREACHABLE_RETURN.
#define CLASS_OF
Old name of rb_class_of.
#define rb_ary_new4
Old name of rb_ary_new_from_values.
#define FIXABLE
Old name of RB_FIXABLE.
#define rb_exc_new2
Old name of rb_exc_new_cstr.
#define LONG2FIX
Old name of RB_INT2FIX.
#define T_RATIONAL
Old name of RUBY_T_RATIONAL.
#define T_HASH
Old name of RUBY_T_HASH.
#define NUM2DBL
Old name of rb_num2dbl.
#define rb_ary_new3
Old name of rb_ary_new_from_args.
#define LONG2NUM
Old name of RB_LONG2NUM.
#define Qtrue
Old name of RUBY_Qtrue.
#define ST2FIX
Old name of RB_ST2FIX.
#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 NIL_P
Old name of RB_NIL_P.
#define ALLOCV_N
Old name of RB_ALLOCV_N.
#define POSFIXABLE
Old name of RB_POSFIXABLE.
#define T_SYMBOL
Old name of RUBY_T_SYMBOL.
#define DBL2NUM
Old name of rb_float_new.
#define NUM2LONG
Old name of RB_NUM2LONG.
#define FIXNUM_P
Old name of RB_FIXNUM_P.
#define rb_ary_new2
Old name of rb_ary_new_capa.
#define ALLOCV_END
Old name of RB_ALLOCV_END.
#define SYMBOL_P
Old name of RB_SYMBOL_P.
void rb_exc_raise(VALUE mesg)
Raises an exception in the current thread.
void rb_iter_break(void)
Breaks from a block.
VALUE rb_eRangeError
RangeError exception.
VALUE rb_eTypeError
TypeError exception.
VALUE rb_eRuntimeError
RuntimeError exception.
VALUE rb_eStopIteration
StopIteration exception.
void rb_warn(const char *fmt,...)
Identical to rb_warning(), except it reports unless $VERBOSE is nil.
VALUE rb_exc_new_str(VALUE etype, VALUE str)
Identical to rb_exc_new_cstr(), except it takes a Ruby's string instead of C's.
VALUE rb_eIndexError
IndexError exception.
VALUE rb_mKernel
Kernel module.
VALUE rb_mEnumerable
Enumerable module.
VALUE rb_cEnumerator
Enumerator class.
VALUE rb_obj_hide(VALUE obj)
Make the object invisible from Ruby code.
VALUE rb_cNumeric
Numeric class.
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_cRange
Range class.
VALUE rb_equal(VALUE lhs, VALUE rhs)
This function is an optimised version of calling #==.
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_obj_freeze(VALUE obj)
Just calls rb_obj_freeze_inline() inside.
VALUE rb_to_int(VALUE val)
Identical to rb_check_to_int(), except it raises in case of conversion mismatch.
#define RB_OBJ_WRITE(old, slot, young)
Declaration of a "back" pointer.
VALUE rb_funcall(VALUE recv, ID mid, int n,...)
Calls a method.
VALUE rb_funcall_with_block(VALUE recv, ID mid, int argc, const VALUE *argv, VALUE procval)
Identical to rb_funcallv_public(), except you can pass a block.
VALUE rb_call_super(int argc, const VALUE *argv)
This resembles ruby's super.
VALUE rb_ary_new_from_values(long n, const VALUE *elts)
Identical to rb_ary_new_from_args(), except how objects are passed.
VALUE rb_ary_dup(VALUE ary)
Duplicates an array.
VALUE rb_ary_cat(VALUE ary, const VALUE *train, long len)
Destructively appends multiple elements at the end of the array.
VALUE rb_check_array_type(VALUE obj)
Try converting an object to its array representation using its to_ary method, if any.
VALUE rb_ary_new(void)
Allocates a new, empty array.
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_resize(VALUE ary, long len)
Expands or shrinks the passed array to the passed length.
VALUE rb_ary_hidden_new(long capa)
Allocates a hidden (no class) empty array.
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_entry(VALUE ary, long off)
Queries an element of an array.
void rb_ary_store(VALUE ary, long key, VALUE val)
Destructively stores the passed value to the passed array's passed index.
#define RETURN_SIZED_ENUMERATOR(obj, argc, argv, size_fn)
This roughly resembles return enum_for(__callee__) unless block_given?.
VALUE rb_enumerator_size_func(VALUE recv, VALUE argv, VALUE eobj)
This is the type of functions that rb_enumeratorize_with_size() expects.
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.
VALUE rb_num_coerce_cmp(VALUE lhs, VALUE rhs, ID op)
Identical to rb_num_coerce_bin(), except for return values.
VALUE rb_obj_method(VALUE recv, VALUE mid)
Creates a method object.
VALUE rb_block_proc(void)
Constructs a Proc object from implicitly passed components.
VALUE rb_proc_call_with_block(VALUE recv, int argc, const VALUE *argv, VALUE proc)
Identical to rb_proc_call(), except you can additionally pass another proc object,...
VALUE rb_proc_call_kw(VALUE recv, VALUE args, int kw_splat)
Identical to rb_proc_call(), except you can specify how to handle the last element of the given array...
VALUE rb_obj_is_proc(VALUE recv)
Queries if the given object is a proc.
int rb_range_values(VALUE range, VALUE *begp, VALUE *endp, int *exclp)
Deconstructs a range into its components.
#define rb_hash_uint(h, i)
Just another name of st_hash_uint.
#define rb_hash_end(h)
Just another name of st_hash_end.
VALUE rb_str_append(VALUE dst, VALUE src)
Identical to rb_str_buf_append(), except it converts the right hand side before concatenating.
VALUE rb_str_dup(VALUE str)
Duplicates a string.
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.
void rb_str_set_len(VALUE str, long len)
Overwrites the length of the string.
st_index_t rb_hash_start(st_index_t i)
Starts a series of hashing.
VALUE rb_exec_recursive(VALUE(*f)(VALUE g, VALUE h, int r), VALUE g, VALUE h)
"Recursion" API entry point.
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_undef_alloc_func(VALUE klass)
Deletes the allocator function of a class.
VALUE rb_check_funcall(VALUE recv, ID mid, int argc, const VALUE *argv)
Identical to rb_funcallv(), except it returns RUBY_Qundef instead of raising rb_eNoMethodError.
VALUE rb_check_funcall_kw(VALUE recv, ID mid, int argc, const VALUE *argv, int kw_splat)
Identical to rb_check_funcall(), except you can specify how to handle the last element of the given a...
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().
VALUE rb_sym2str(VALUE symbol)
Obtain a frozen string representation of a symbol (not including the leading colon).
int len
Length 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_values2(int n, const VALUE *argv)
Identical to rb_yield_values(), except it takes the parameters as a C array instead of variadic argum...
VALUE rb_yield(VALUE val)
Yields the block.
VALUE rb_yield_values_kw(int n, const VALUE *argv, int kw_splat)
Identical to rb_yield_values2(), except you can specify how to handle the last element of the given a...
VALUE rb_block_call_func(RB_BLOCK_CALL_FUNC_ARGLIST(yielded_arg, callback_arg))
This is the type of a function that the interpreter expect for C-backended blocks.
VALUE rb_block_call_kw(VALUE obj, ID mid, int argc, const VALUE *argv, rb_block_call_func_t proc, VALUE data2, int kw_splat)
Identical to rb_funcallv_kw(), except it additionally passes a function as a block.
#define rb_long2int
Just another name of rb_long2int_inline.
#define MEMCPY(p1, p2, type, n)
Handy macro to call memcpy.
#define ALLOCA_N(type, n)
#define RB_GC_GUARD(v)
Prevents premature destruction of local objects.
VALUE rb_block_call(VALUE q, ID w, int e, const VALUE *r, type *t, VALUE y)
Call a method with a block.
VALUE rb_proc_new(type *q, VALUE w)
Creates a rb_cProc instance.
VALUE rb_fiber_new(type *q, VALUE w)
Creates a rb_cFiber instance.
void rb_hash_foreach(VALUE q, int_type *w, VALUE e)
Iteration over the given hash.
VALUE rb_rescue2(type *q, VALUE w, type *e, VALUE r,...)
An equivalent of rescue clause.
#define RARRAY_LEN
Just another name of rb_array_len.
static int RARRAY_LENINT(VALUE ary)
Identical to rb_array_len(), except it differs for the return type.
#define RARRAY_AREF(a, i)
#define RARRAY_CONST_PTR
Just another name of rb_array_const_ptr.
#define RHASH_EMPTY_P(h)
Checks if the hash is empty.
#define RUBY_TYPED_DEFAULT_FREE
This is a value you can set to rb_data_type_struct::dfree.
#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...
#define InitVM(ext)
This macro is for internal use.
#define RB_SCAN_ARGS_LAST_HASH_KEYWORDS
Treat a final argument as keywords if it is a hash, and not as keywords otherwise.
#define RB_PASS_CALLED_KEYWORDS
Pass keywords if current method is called with keywords, useful for argument delegation.
#define RB_NO_KEYWORDS
Do not pass keywords.
#define RTEST
This is an old name of RB_TEST.
#define _(args)
This was a transition path from K&R to ANSI.
Decomposed Enumerator::ArithmeicSequence.
int exclude_end
Whether the endpoint is open or closed.
VALUE end
"Right" or "highest" endpoint of the sequence.
VALUE step
Step between a sequence.
VALUE begin
"Left" or "lowest" endpoint of the sequence.
This is the struct that holds necessary info for a struct.
VALUE flags
Type-specific behavioural characteristics.
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
uintptr_t VALUE
Type that represents a Ruby object.
static bool RB_FLOAT_TYPE_P(VALUE obj)
Queries if the object is an instance of rb_cFloat.
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.