Sha256: 978f2e561548cee7a3d7da178eaf93ae4f97f20bee827c33d5f5b0c4b77219a9

Contents?: true

Size: 1.87 KB

Versions: 6

Compression:

Stored size: 1.87 KB

Contents

#  Copyright 2013 Petr Chalupa <git+algebrick@pitr.ch>
#
#  Licensed under the Apache License, Version 2.0 (the "License");
#  you may not use this file except in compliance with the License.
#  You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
#  Unless required by applicable law or agreed to in writing, software
#  distributed under the License is distributed on an "AS IS" BASIS,
#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#  See the License for the specific language governing permissions and
#  limitations under the License.

module Algebrick
  # include this module anywhere yoy need to use pattern matching
  module Matching
    def any
      Matchers::Any.new
    end

    def match(value, *cases)
      success, result = match? value, *cases
      raise "no match for (#{value.class}) '#{value}' by any of #{cases.map(&:first).join ', '}" unless success
      result
    end

    def match?(value, *cases)
      cases = if cases.size == 1 && cases.first.is_a?(Hash)
                cases.first
              else
                cases
              end

      cases.each do |matcher, block|
        return true, Matching.match_value(matcher, block) if matcher === value
      end
      [false, nil]
    end

    def on(matcher, value = nil, &block)
      matcher = if matcher.is_a? Matchers::Abstract
                  matcher
                else
                  matcher.to_m
                end
      raise ArgumentError, 'only one of block or value can be supplied' if block && value
      [matcher, value || block]
    end

    private

    def self.match_value(matcher, block)
      if block.kind_of? Proc
        if matcher.kind_of? Matchers::Abstract
          matcher.assigns &block
        else
          block.call
        end
      else
        block
      end
    end
  end

  include Matching
  extend Matching
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
algebrick-0.7.5 lib/algebrick/matching.rb
algebrick-0.7.4 lib/algebrick/matching.rb
algebrick-0.7.3 lib/algebrick/matching.rb
algebrick-0.7.2 lib/algebrick/matching.rb
algebrick-0.7.1 lib/algebrick/matching.rb
algebrick-0.7.0 lib/algebrick/matching.rb