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

Version Path
hako-2.4.0 lib/hako/schema/nullable.rb
hako-2.3.1 lib/hako/schema/nullable.rb
hako-2.3.0 lib/hako/schema/nullable.rb
hako-2.2.0 lib/hako/schema/nullable.rb
hako-2.1.0 lib/hako/schema/nullable.rb
hako-2.0.4 lib/hako/schema/nullable.rb
hako-2.0.3 lib/hako/schema/nullable.rb
hako-2.0.2 lib/hako/schema/nullable.rb
hako-2.0.1 lib/hako/schema/nullable.rb
hako-2.0.0 lib/hako/schema/nullable.rb
hako-1.9.0 lib/hako/schema/nullable.rb
hako-1.8.4 lib/hako/schema/nullable.rb
hako-1.8.3 lib/hako/schema/nullable.rb
hako-1.8.2 lib/hako/schema/nullable.rb
hako-1.8.1 lib/hako/schema/nullable.rb
hako-1.8.0 lib/hako/schema/nullable.rb
hako-1.7.0 lib/hako/schema/nullable.rb
hako-1.6.2 lib/hako/schema/nullable.rb
hako-1.6.1 lib/hako/schema/nullable.rb
hako-1.6.0 lib/hako/schema/nullable.rb