Sha256: 1942e965c29b1addf308de729da69c9a2d695b4e0590d97b91322da7f43b0c67

Contents?: true

Size: 419 Bytes

Versions: 13

Compression:

Stored size: 419 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

13 entries across 13 versions & 1 rubygems

Version Path
hako-1.1.0 lib/hako/schema/nullable.rb
hako-1.0.1 lib/hako/schema/nullable.rb
hako-1.0.0 lib/hako/schema/nullable.rb
hako-0.27.0 lib/hako/schema/nullable.rb
hako-0.26.0 lib/hako/schema/nullable.rb
hako-0.25.2 lib/hako/schema/nullable.rb
hako-0.25.1 lib/hako/schema/nullable.rb
hako-0.25.0 lib/hako/schema/nullable.rb
hako-0.24.0 lib/hako/schema/nullable.rb
hako-0.23.0 lib/hako/schema/nullable.rb
hako-0.22.0 lib/hako/schema/nullable.rb
hako-0.21.1 lib/hako/schema/nullable.rb
hako-0.21.0 lib/hako/schema/nullable.rb