Returns the number of instance variables.
Customer = Struct.new(:name, :address, :zip) joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345) joe.length #=> 3
864 865 866
# File 'struct.c', line 864 static VALUE rb_struct_size(s) VALUE s;