Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use method_missing #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 10 additions & 49 deletions lib/mf/public_api.rb
Original file line number Diff line number Diff line change
@@ -1,33 +1,18 @@
module Mf
module PublicApi
# Math infix operators

def +(b)
proc { |a| a + b }
end

def -(b)
proc { |a| a - b }
end

def *(b)
proc { |a| a * b }
end

def /(b)
proc { |a| a / b }
end

def %(b)
proc { |a| a % b }
end

def **(b)
proc { |a| a ** b }
# Handle most operators
def method_missing(cmd, *args)
eigenclass = class << self; self; end
cmd_sym = cmd.to_sym
eigenclass.class_eval do
define_method(cmd_sym) do |b|
proc { |a| a.send(cmd_sym, b) }
end
end
send(cmd, *args)
end

# Comparators

def >(b)
proc { |a| a > b }
end
Expand Down Expand Up @@ -57,29 +42,5 @@ def ==(b)
def ===(b)
proc { |a| b === a }
end

# Bit Operators

def |(b)
proc { |a| a | b }
end

def &(b)
proc { |a| a & b }
end

def >>(b)
proc { |a| a >> b }
end

def <<(b)
proc { |a| a << b }
end

# Bracket Accessors

def [](b)
proc { |a| a[b] }
end
end
end