# File lib/grape/validations/types/custom_type_collection_coercer.rb, line 48 def call(value) coerced = value.map { |item| super(item) } @set ? Set.new(coerced) : coerced end