Sha256: 3e842826886f757af4303525004a20759a47608181eb68cc81decf64ff2fcd2d

Contents?: true

Size: 500 Bytes

Versions: 8

Compression:

Stored size: 500 Bytes

Contents

# frozen_string_literal: true

require_relative "hash/assert_valid_keys"
require_relative "hash/except"
require_relative "hash/triple_equality_compare"

module ConvenientService
  module Utils
    module Hash
      class << self
        def assert_valid_keys(...)
          AssertValidKeys.call(...)
        end

        def except(...)
          Except.call(...)
        end

        def triple_equality_compare(...)
          TripleEqualityCompare.call(...)
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
convenient_service-0.19.1 lib/convenient_service/utils/hash.rb
convenient_service-0.19.0 lib/convenient_service/utils/hash.rb
convenient_service-0.18.0 lib/convenient_service/utils/hash.rb
convenient_service-0.17.0 lib/convenient_service/utils/hash.rb
convenient_service-0.16.0 lib/convenient_service/utils/hash.rb
convenient_service-0.15.0 lib/convenient_service/utils/hash.rb
convenient_service-0.14.0 lib/convenient_service/utils/hash.rb
convenient_service-0.13.0 lib/convenient_service/utils/hash.rb