class Grape::DryTypes::StrictCache

def initialize

def initialize
  super
  @cache = Hash.new do |h, strict_type|
    h[strict_type] = MAPPING.fetch(strict_type) do
      DryTypes.wrapped_dry_types_const_get(DryTypes::Strict, strict_type)
    end
  end
end