Sha256: a6a4040d3ed1f608a1c3e8ed9b5965a64b99534633cc433bb92b21775e027968

Contents?: true

Size: 1.17 KB

Versions: 8

Compression:

Stored size: 1.17 KB

Contents

module Spruz
  module Subhash
    # Create a subhash from this hash, that only contains key-value pairs
    # matching +patterns+ and return it. +patterns+ can be for example /^foo/
    # to put 'foobar' and 'foobaz' or 'foo'/:foo to put 'foo' into the subhash.
    # 
    # If a block is given this method yields to it after the first pattern
    # matched with a 3-tuple of +(key, value, match_data)+ using the return
    # value of the block as the value of the result hash. +match_data+ is a
    # MatchData instance if the matching pattern was a regular rexpression
    # otherwise it is nil.
    def subhash(*patterns)
      patterns.map! { |pat| pat.respond_to?(:match) ? pat : pat.to_s }
      result =
        if default_proc
          self.class.new(&default_proc)
        else 
          self.class.new(default)
        end
      if block_given?
        each do |k, v|
          patterns.each { |pat|
            if pat === k.to_s
              result[k] = yield(k, v, $~)
              break
            end
          }
        end
      else
        each do |k, v|
          result[k] = v if patterns.any? { |pat| pat === k.to_s }
        end
      end
      result
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
spruz-0.2.2 lib/spruz/subhash.rb
spruz-0.2.1 lib/spruz/subhash.rb
spruz-0.2.0 lib/spruz/subhash.rb
spruz-0.1.5 lib/spruz/subhash.rb
spruz-0.1.3 lib/spruz/subhash.rb
spruz-0.1.2 lib/spruz/subhash.rb
spruz-0.1.1 lib/spruz/subhash.rb
spruz-0.1.0 lib/spruz/subhash.rb