In Files

  • complex.rb

Parent

Methods

Class/Module Index [+]

Quicksearch

Complex

Public Class Methods

generic?(other) click to toggle source
 
               # File complex.rb, line 8
def Complex.generic? (other)
  other.kind_of?(Integer) ||
  other.kind_of?(Float)   ||
  other.kind_of?(Rational)
end