Method: Snow::Vec3Array#length
- Defined in:
- ext/snow-math/snow-math.c
#length ⇒ Object
Returns the array’s length.
call-seq: length -> fixnum
85 86 87 88 |
# File 'ext/snow-math/snow-math.c', line 85 static VALUE sm_mathtype_array_length(VALUE sm_self) { return rb_ivar_get(sm_self, kRB_IVAR_MATHARRAY_LENGTH); } |