[DOC] No document for internal or debug methods

This commit is contained in:
Nobuyoshi Nakada 2023-12-18 19:57:45 +09:00
parent baf1403fba
commit 40fc9b070c
No known key found for this signature in database
GPG Key ID: 3582D74E1FEE4465
5 changed files with 6 additions and 0 deletions

View File

@ -8092,6 +8092,7 @@ rb_ary_sum(int argc, VALUE *argv, VALUE ary)
return v; return v;
} }
/* :nodoc: */
static VALUE static VALUE
rb_ary_deconstruct(VALUE ary) rb_ary_deconstruct(VALUE ary)
{ {

1
hash.c
View File

@ -4684,6 +4684,7 @@ rb_hash_to_proc(VALUE hash)
return rb_func_lambda_new(hash_proc_call, hash, 1, 1); return rb_func_lambda_new(hash_proc_call, hash, 1, 1);
} }
/* :nodoc: */
static VALUE static VALUE
rb_hash_deconstruct_keys(VALUE hash, VALUE keys) rb_hash_deconstruct_keys(VALUE hash, VALUE keys)
{ {

View File

@ -78,6 +78,7 @@ each_builtin_i(st_data_t key, st_data_t val, st_data_t dmy)
return ST_CONTINUE; return ST_CONTINUE;
} }
/* :nodoc: */
static VALUE static VALUE
each_builtin(VALUE self) each_builtin(VALUE self)
{ {

View File

@ -1131,6 +1131,7 @@ rb_shape_shapes_available(VALUE self)
return INT2NUM(MAX_SHAPE_ID - (GET_SHAPE_TREE()->next_shape_id - 1)); return INT2NUM(MAX_SHAPE_ID - (GET_SHAPE_TREE()->next_shape_id - 1));
} }
/* :nodoc: */
static VALUE static VALUE
rb_shape_exhaust(int argc, VALUE *argv, VALUE self) rb_shape_exhaust(int argc, VALUE *argv, VALUE self)
{ {

2
vm.c
View File

@ -3761,6 +3761,7 @@ f_sprintf(int c, const VALUE *v, VALUE _)
return rb_f_sprintf(c, v); return rb_f_sprintf(c, v);
} }
/* :nodoc: */
static VALUE static VALUE
vm_mtbl(VALUE self, VALUE obj, VALUE sym) vm_mtbl(VALUE self, VALUE obj, VALUE sym)
{ {
@ -3768,6 +3769,7 @@ vm_mtbl(VALUE self, VALUE obj, VALUE sym)
return Qnil; return Qnil;
} }
/* :nodoc: */
static VALUE static VALUE
vm_mtbl2(VALUE self, VALUE obj, VALUE sym) vm_mtbl2(VALUE self, VALUE obj, VALUE sym)
{ {