Class: MemoryViewTestUtils::ExportableString
| Relationships & Source Files | |
| Inherits: | Object |
| Defined in: | ext/-test-/memory_view/memory_view.c |
Class Method Summary
- .new(s) constructor
Constructor Details
.new(s)
[ GitHub ]# File 'ext/-test-/memory_view/memory_view.c', line 252
static VALUE
expstr_initialize(VALUE obj, VALUE s)
{
if (!NIL_P(s)) {
Check_Type(s, T_STRING);
}
rb_ivar_set(obj, id_str, s);
return Qnil;
}