diff options
author | Jean Boussier <[email protected]> | 2025-06-13 11:23:32 +0200 |
---|---|---|
committer | Jean Boussier <[email protected]> | 2025-06-13 19:46:29 +0200 |
commit | a99d941cacbb9d5d277400abf76f5648f91009ea (patch) | |
tree | 062e514cbaf393b275e5c111c7ace438bfed08be /internal/string.h | |
parent | fb0dbbc0e660d0c77ebba292578945aca8baafac (diff) |
Add SHAPE_ID_HAS_IVAR_MASK for quick ivar check
This allow checking if an object has ivars with just a shape_id
mask.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/13606
Diffstat (limited to 'internal/string.h')
-rw-r--r-- | internal/string.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/string.h b/internal/string.h index 50561924f2..d6fea62061 100644 --- a/internal/string.h +++ b/internal/string.h @@ -30,6 +30,7 @@ enum ruby_rstring_private_flags { #endif /* string.c */ +VALUE rb_str_dup_m(VALUE str); VALUE rb_fstring(VALUE); VALUE rb_fstring_cstr(const char *str); VALUE rb_fstring_enc_new(const char *ptr, long len, rb_encoding *enc); |