Ruby 3.5.0dev (2025-01-10 revision 5fab31b15e32622c4b71d1d347a41937e9f9c212)
proc.h
1#ifndef INTERNAL_PROC_H /*-*-C-*-vi:se ft=c:*/
2#define INTERNAL_PROC_H
11#include "ruby/ruby.h" /* for rb_block_call_func_t */
12#include "ruby/st.h" /* for st_index_t */
13struct rb_block; /* in vm_core.h */
14struct rb_iseq_struct; /* in vm_core.h */
15
16/* proc.c */
17VALUE rb_proc_location(VALUE self);
18st_index_t rb_hash_proc(st_index_t hash, VALUE proc);
19int rb_block_pair_yield_optimizable(void);
20int rb_block_arity(void);
21int rb_block_min_max_arity(int *max);
22VALUE rb_block_to_s(VALUE self, const struct rb_block *block, const char *additional_info);
23VALUE rb_callable_receiver(VALUE);
24
25VALUE rb_func_proc_new(rb_block_call_func_t func, VALUE val);
26VALUE rb_func_proc_dup(VALUE src_obj);
27VALUE rb_func_lambda_new(rb_block_call_func_t func, VALUE val, int min_argc, int max_argc);
28VALUE rb_iseq_location(const struct rb_iseq_struct *iseq);
29VALUE rb_sym_to_proc(VALUE sym);
30
31#endif /* INTERNAL_PROC_H */
rb_block_call_func * rb_block_call_func_t
Shorthand type that represents an iterator-written-in-C function pointer.
Definition iterator.h:88
uintptr_t VALUE
Type that represents a Ruby object.
Definition value.h:40