Class: DataModel::Builtin::Float
- Includes:
- Errors
- Defined in:
- lib/data_model/builtin/float.rb
Overview
A float type.
Defined Under Namespace
Classes: Arguments
Instance Attribute Summary
Attributes inherited from Type
Instance Method Summary collapse
-
#read(val, coerce: false) ⇒ Array(Object, Error)
read a value, and validate it.
Methods included from Errors
#blank_error, #blank_error_message, #coerce_error, #coerce_error_message, #earliest_error, #early_error_message, #error_messages, #exclusion_error, #exclusion_error_message, #extra_keys_error, #extra_keys_error_message, #format_error, #format_error_message, #inclusion_error, #inclusion_error_message, #late_error_message, #latest_error, #max_error, #max_error_message, #min_error, #min_error_message, #missing_error, #missing_error_message, #type_error, #type_error_message
Methods inherited from Type
#configure, #initialize, #instantiate, #invoke, #type_name
Constructor Details
This class inherits a constructor from DataModel::Type
Instance Method Details
#read(val, coerce: false) ⇒ Array(Object, Error)
read a value, and validate it
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/data_model/builtin/float.rb', line 17 def read(val, coerce: false) err = Error.new args = Arguments.new(type_args) if args.optional && val.nil? return [val, err] end if !args.optional && val.nil? err.add(missing_error(type_name)) return [val, err] end if !val.is_a?(Float) && !coerce err.add(type_error(type_name, val)) return [val, err] end if !val.is_a?(Float) && coerce if val.is_a?(String) || val.is_a?(Numeric) val = Float(val) elsif val.respond_to?(:to_f) val = val.to_f end if !val.is_a?(Float) err.add(coerce_error(type_name, val)) return [val, err] end end min = args.min if min && val <= min err.add(min_error(min, val)) return [val, err] end max = args.max if max && val <= max err.add(max_error(max, val)) return [val, err] end [val, err] end |