class Money::ReverseOperationProxy
def *(other)
def *(other) other * @value end
def +(other)
def +(other) other + @value end
def -(other)
def -(other) -(other - @value) end
def <=>(other)
def <=>(other) -(other <=> @value) end
def initialize(value)
def initialize(value) @value = value end