Method: Cumo::Struct#inspect
- Defined in:
- ext/cumo/narray/struct.c
#inspect ⇒ String
Returns a string containing a human-readable representation of NArray.
791 792 793 794 795 796 797 |
# File 'ext/cumo/narray/struct.c', line 791 static VALUE cumo_na_struct_inspect(VALUE ary) { VALUE opt; opt = nst_create_member_views(ary); return cumo_na_ndloop_inspect(ary, iter_struct_inspect, opt); } |