Sha256: 2edecd28fc7061e479d9fa0185522d4a16903c4f6165e6b97e958fd7b7492b95
Contents?: true
Size: 420 Bytes
Versions: 50
Compression:
Stored size: 420 Bytes
Contents
# frozen_string_literal: true module Hako module Schema class Nullable def initialize(schema) @schema = schema end def valid?(object) object.nil? || @schema.valid?(object) end def same?(x, y) if x.nil? && y.nil? true elsif x.nil? || y.nil? false else @schema.same?(x, y) end end end end end
Version data entries
50 entries across 50 versions & 1 rubygems