Class: DataModel::Builtin::Numeric

Inherits:
Type
  • Object
show all
Includes:
Errors
Defined in:
lib/data_model/builtin/numeric.rb

Overview

Numeric type is :integer | :float | :decimal

Defined Under Namespace

Classes: Arguments

Instance Attribute Summary

Attributes inherited from Type

#type_args, #type_registry

Instance Method Summary collapse

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

Parameters:

  • val (Object)

    the value to read

  • coerce (Boolean) (defaults to: false)

    whether to coerce the value

Returns:



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/data_model/builtin/numeric.rb', line 15

def read(val, coerce: false)
	args = Arguments.new(type_args)
	err = Error.new

	# optional and missing
	if !args.optional && val.nil?
		err.add(missing_error(type_name))
	end

	# when missing, return early
	if val.nil?
		return [val, err]
	end

	val, err = invoke(:or, val, params: [:integer, :float, :decimal], coerce:)

	# done
	return [val, err]
end