# File lib/main/parameter.rb, line 201 def apply_casting if cast? op = cast.respond_to?('call') ? cast : Cast[cast] values.map! do |val| Parameter.wrap_errors{ op.call val } end end end