Method: NForm::CoercionSet#fetch

Defined in:
lib/nform/coercions.rb

#fetch(key) ⇒ Object



15
16
17
18
19
20
21
# File 'lib/nform/coercions.rb', line 15

def fetch(key)
  if v = set[key]
    v
  else
    raise Error, "Undefined coercion: #{key}"
  end
end