Method: Snow::Mat4Array#length

Defined in:
ext/snow-math/snow-math.c

#lengthObject

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);
}