Class: Numeric

Inherits:
Object show all
Includes:
Comparable
Defined in:
opal/opal/corelib/numeric.rb

Direct Known Subclasses

Complex, Float, Integer, Number, Rational

Instance Method Summary collapse

Methods included from Comparable

#<, #<=, #==, #>, #>=, #between?, #clamp

Instance Method Details

#%(other) ⇒ Object Also known as: modulo



46
47
48
# File 'opal/opal/corelib/numeric.rb', line 46

def %(other)
  self - other * div(other)
end

#+@Object



38
39
40
# File 'opal/opal/corelib/numeric.rb', line 38

def +@
  self
end

#-@Object



42
43
44
# File 'opal/opal/corelib/numeric.rb', line 42

def -@
  0 - self
end

#<=>(other) ⇒ Object



30
31
32
33
34
35
36
# File 'opal/opal/corelib/numeric.rb', line 30

def <=>(other)
  if equal? other
    return 0
  end

  nil
end

#__coerced__(method, other) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'opal/opal/corelib/numeric.rb', line 16

def __coerced__(method, other)
  if other.respond_to?(:coerce)
    a, b = other.coerce(self)
    a.__send__ method, b
  else
    case method
    when :+, :-, :*, :/, :%, :&, :|, :^, :**
      ::Kernel.raise ::TypeError, "#{other.class} can't be coerced into Numeric"
    when :>, :>=, :<, :<=, :<=>
      ::Kernel.raise ::ArgumentError, "comparison of #{self.class} with #{other.class} failed"
    end
  end
end

#absObject Also known as: magnitude



50
51
52
# File 'opal/opal/corelib/numeric.rb', line 50

def abs
  self < 0 ? -self : self
end

#abs2Object



54
55
56
# File 'opal/opal/corelib/numeric.rb', line 54

def abs2
  self * self
end

#angleObject Also known as: arg



58
59
60
# File 'opal/opal/corelib/numeric.rb', line 58

def angle
  self < 0 ? ::Math::PI : 0
end

#ceil(ndigits = 0) ⇒ Object



62
63
64
# File 'opal/opal/corelib/numeric.rb', line 62

def ceil(ndigits = 0)
  to_f.ceil(ndigits)
end

#clone(freeze: true) ⇒ Object



330
331
332
# File 'opal/opal/corelib/numeric.rb', line 330

def clone(freeze: true)
  self
end

#coerce(other) ⇒ Object



8
9
10
11
12
13
14
# File 'opal/opal/corelib/numeric.rb', line 8

def coerce(other)
  if other.instance_of? self.class
    return [other, self]
  end

  [::Kernel.Float(other), ::Kernel.Float(self)]
end

#conjObject Also known as: conjugate



66
67
68
# File 'opal/opal/corelib/numeric.rb', line 66

def conj
  self
end

#denominatorObject



70
71
72
# File 'opal/opal/corelib/numeric.rb', line 70

def denominator
  to_r.denominator
end

#div(other) ⇒ Object



74
75
76
77
78
# File 'opal/opal/corelib/numeric.rb', line 74

def div(other)
  ::Kernel.raise ::ZeroDivisionError, 'divided by o' if other == 0

  (self / other).floor
end

#divmod(other) ⇒ Object



80
81
82
# File 'opal/opal/corelib/numeric.rb', line 80

def divmod(other)
  [div(other), self % other]
end

#dupObject



326
327
328
# File 'opal/opal/corelib/numeric.rb', line 326

def dup
  self
end

#fdiv(other) ⇒ Object



84
85
86
# File 'opal/opal/corelib/numeric.rb', line 84

def fdiv(other)
  to_f / other
end

#finite?Boolean

Returns:



334
335
336
# File 'opal/opal/corelib/numeric.rb', line 334

def finite?
  true
end

#floor(ndigits = 0) ⇒ Object



88
89
90
# File 'opal/opal/corelib/numeric.rb', line 88

def floor(ndigits = 0)
  to_f.floor(ndigits)
end

#iObject



92
93
94
# File 'opal/opal/corelib/numeric.rb', line 92

def i
  ::Kernel.Complex(0, self)
end

#imagObject Also known as: imaginary



96
97
98
# File 'opal/opal/corelib/numeric.rb', line 96

def imag
  0
end

#infinite?Boolean

Returns:



338
339
340
# File 'opal/opal/corelib/numeric.rb', line 338

def infinite?
  nil
end

#integer?Boolean

Returns:



100
101
102
# File 'opal/opal/corelib/numeric.rb', line 100

def integer?
  false
end

#negative?Boolean

Returns:



322
323
324
# File 'opal/opal/corelib/numeric.rb', line 322

def negative?
  self < 0
end

#nonzero?Boolean

Returns:



104
105
106
# File 'opal/opal/corelib/numeric.rb', line 104

def nonzero?
  zero? ? nil : self
end

#numeratorObject



108
109
110
# File 'opal/opal/corelib/numeric.rb', line 108

def numerator
  to_r.numerator
end

#polarObject



112
113
114
# File 'opal/opal/corelib/numeric.rb', line 112

def polar
  [abs, arg]
end

#positive?Boolean

Returns:



318
319
320
# File 'opal/opal/corelib/numeric.rb', line 318

def positive?
  self > 0
end

#quo(other) ⇒ Object



116
117
118
# File 'opal/opal/corelib/numeric.rb', line 116

def quo(other)
  ::Opal.coerce_to!(self, ::Rational, :to_r) / other
end

#realObject



120
121
122
# File 'opal/opal/corelib/numeric.rb', line 120

def real
  self
end

#real?Boolean

Returns:



124
125
126
# File 'opal/opal/corelib/numeric.rb', line 124

def real?
  true
end

#rectObject Also known as: rectangular



128
129
130
# File 'opal/opal/corelib/numeric.rb', line 128

def rect
  [self, 0]
end

#round(digits = undefined) ⇒ Object



132
133
134
# File 'opal/opal/corelib/numeric.rb', line 132

def round(digits = undefined)
  to_f.round(digits)
end

#step(limit = undefined, step = undefined, to: undefined, by: undefined, &block) ⇒ Object



136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
# File 'opal/opal/corelib/numeric.rb', line 136

def step(limit = undefined, step = undefined, to: undefined, by: undefined, &block)
  %x{
    if (limit !== undefined && to !== undefined) {
      #{::Kernel.raise ::ArgumentError, 'to is given twice'}
    }

    if (step !== undefined && by !== undefined) {
      #{::Kernel.raise ::ArgumentError, 'step is given twice'}
    }

    if (to !== undefined) {
      limit = to;
    }

    if (by !== undefined) {
      step = by;
    }

    if (limit === undefined) {
      limit = nil;
    }

    function validateParameters() {
      if (step === nil) {
        #{::Kernel.raise ::TypeError, 'step must be numeric'}
      }

      if (step != null && #{step == 0}) {
        #{::Kernel.raise ::ArgumentError, "step can't be 0"}
      }

      if (step === nil || step == null) {
        step = 1;
      }

      var sign = #{step <=> 0};

      if (sign === nil) {
        #{::Kernel.raise ::ArgumentError, "0 can't be coerced into #{step.class}"}
      }

      if (limit === nil || limit == null) {
        limit = sign > 0 ? #{::Float::INFINITY} : #{-::Float::INFINITY};
      }

      #{::Opal.compare(self, limit)}
    }

    function stepFloatSize() {
      if ((step > 0 && self > limit) || (step < 0 && self < limit)) {
        return 0;
      } else if (step === Infinity || step === -Infinity) {
        return 1;
      } else {
        var abs = Math.abs, floor = Math.floor,
            err = (abs(self) + abs(limit) + abs(limit - self)) / abs(step) * #{::Float::EPSILON};

        if (err === Infinity || err === -Infinity) {
          return 0;
        } else {
          if (err > 0.5) {
            err = 0.5;
          }

          return floor((limit - self) / step + err) + 1
        }
      }
    }

    function stepSize() {
      validateParameters();

      if (step === 0) {
        return Infinity;
      }

      if (step % 1 !== 0) {
        return stepFloatSize();
      } else if ((step > 0 && self > limit) || (step < 0 && self < limit)) {
        return 0;
      } else {
        var ceil = Math.ceil, abs = Math.abs,
            lhs = abs(self - limit) + 1,
            rhs = abs(step);

        return ceil(lhs / rhs);
      }
    }

  }

  unless block_given?
    if (!limit || limit.is_a?(::Numeric)) &&
       (!step || step.is_a?(::Numeric))

      return ::Enumerator::ArithmeticSequence.new(
        [limit, step, ('to: ' if to), ('by: ' if by)], self
      )
    else
      return enum_for(:step, limit, step, &`stepSize`)
    end
  end

  %x{
    validateParameters();

    var isDesc = #{step.negative?},
        isInf = #{step == 0} ||
                (limit === Infinity && !isDesc) ||
                (limit === -Infinity && isDesc);

    if (self.$$is_number && step.$$is_number && limit.$$is_number) {
      if (self % 1 === 0 && (isInf || limit % 1 === 0) && step % 1 === 0) {
        var value = self;

        if (isInf) {
          for (;; value += step) {
            block(value);
          }
        } else if (isDesc) {
          for (; value >= limit; value += step) {
            block(value);
          }
        } else {
          for (; value <= limit; value += step) {
            block(value);
          }
        }

        return self;
      } else {
        var begin = #{to_f}.valueOf();
        step = #{step.to_f}.valueOf();
        limit = #{limit.to_f}.valueOf();

        var n = stepFloatSize();

        if (!isFinite(step)) {
          if (n !== 0) block(begin);
        } else if (step === 0) {
          while (true) {
            block(begin);
          }
        } else {
          for (var i = 0; i < n; i++) {
            var d = i * step + self;
            if (step >= 0 ? limit < d : limit > d) {
              d = limit;
            }
            block(d);
          }
        }

        return self;
      }
    }
  }

  counter = self

  while `isDesc ? #{counter >= limit} : #{counter <= limit}`
    yield counter
    counter += step
  end
end

#to_cObject



302
303
304
# File 'opal/opal/corelib/numeric.rb', line 302

def to_c
  ::Kernel.Complex(self, 0)
end

#to_intObject



306
307
308
# File 'opal/opal/corelib/numeric.rb', line 306

def to_int
  to_i
end

#truncate(ndigits = 0) ⇒ Object



310
311
312
# File 'opal/opal/corelib/numeric.rb', line 310

def truncate(ndigits = 0)
  to_f.truncate(ndigits)
end

#zero?Boolean

Returns:



314
315
316
# File 'opal/opal/corelib/numeric.rb', line 314

def zero?
  self == 0
end