struct.length â fixnum
Instance Public methods
Returns the number of instance variables.
1 2 3 | Customer = Struct. new ( :name , :address , :zip ) joe = Customer. new ( "Joe Smith" , "123 Maple, Anytown NC" , 12345 ) joe.length #=> 3 |
Please login to continue.