Class: Shale::Type::Integer

Inherits:
Value
  • Object
show all
Defined in:
lib/shale/type/integer.rb

Overview

Cast value to Integer

Class Method Summary collapse

Methods inherited from Value

as_csv, as_hash, as_json, as_toml, as_xml, as_xml_value, as_yaml, of_csv, of_hash, of_json, of_toml, of_xml, of_yaml

Class Method Details

.cast(value) ⇒ Integer?

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Parameters:

  • value (#to_i, nil)

    Value to cast

Returns:



16
17
18
# File 'lib/shale/type/integer.rb', line 16

def self.cast(value)
  value&.to_i
end