| Class | ApcConst |
| In: |
lib/rapfp/Apc.rb
|
| Parent: | Object |
# File lib/rapfp/Apc.rb, line 222
222: def initialize(rConst)
223: @ZERO = Apc.new(rConst.zero,rConst.zero)
224: @ONE = Apc.new(rConst.one,rConst.zero)
225: @TWO = Apc.new(rConst.two,rConst.zero)
226: @TEN = Apc.new(rConst.ten,rConst.zero)
227: @HALF = Apc.new(rConst.half,rConst.zero)
228: @I = Apc.new(rConst.zero,rConst.one)
229: @MINUS_I = Apc.new(rConst.zero,rConst.minus_one)
230: @MINUS_ONE = Apc.new(rConst.minus_one,rConst.zero)
231: @TWO_I = Apc.new(rConst.zero,rConst.two)
232: end