Method: Axlsx.validate_unsigned_numeric
- Defined in:
- lib/axlsx/util/validators.rb
.validate_unsigned_numeric(v) ⇒ Boolean
Requires that the value is a Integer or Float and is greater or equal to 0
97 98 99 |
# File 'lib/axlsx/util/validators.rb', line 97 def self.validate_unsigned_numeric(v) DataTypeValidator.validate(:unsigned_numeric, Numeric, v, UINT_VALIDATOR) end |