Method: Axlsx::Accessors::ClassMethods#unsigned_int_attr_accessor

Defined in:
lib/axlsx/util/accessors.rb

#unsigned_int_attr_accessor(*symbols) ⇒ Object

Creates one or more usigned integer attr_accessors names of the attributes you will add to your class

Parameters:

  • An array of symbols representing the



29
30
31
# File 'lib/axlsx/util/accessors.rb', line 29

def unsigned_int_attr_accessor(*symbols)
  validated_attr_accessor(symbols, :validate_unsigned_int)
end