class Grape::Validations::Types::CoercerCache

def initialize

def initialize
  super
  @cache = Hash.new do |h, (type, method, strict)|
    h[[type, method, strict]] = Grape::Validations::Types.create_coercer_instance(type, method, strict)
  end
end