Class: Shale::Type::Integer
Overview
Cast value to Integer
Class Method Summary collapse
- .cast(value) ⇒ Integer? private
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.
16 17 18 |
# File 'lib/shale/type/integer.rb', line 16 def self.cast(value) value&.to_i end |