Class: Monolens::Coerce::Integer
- Inherits:
-
Object
- Object
- Monolens::Coerce::Integer
show all
- Includes:
- Lens
- Defined in:
- lib/monolens/stdlib/coerce/integer.rb
Instance Attribute Summary
Attributes included from Lens
#options
Instance Method Summary
collapse
Methods included from Lens
#fail!, included, #initialize
#fetch_on
Instance Method Details
#call(arg, world = {}) ⇒ Object
10
11
12
13
14
15
16
|
# File 'lib/monolens/stdlib/coerce/integer.rb', line 10
def call(arg, world = {})
Integer(arg)
rescue => ex
fail!(ex.message, world)
rescue ArgumentError => ex
fail!(ex.message, world)
end
|