scala.runtime

class RichLong

[source: scala/runtime/RichLong.scala]

final class RichLong(x : Long)
extends Proxy with Ordered[Long]
Method Summary
def abs : Long
def compare (y : Long) : Int
Result of comparing this with operand that. returns x where x < 0 iff this < that x == 0 iff this == that x > 0 iff this > that
def max (y : Long) : Long
def min (y : Long) : Long
def self : Any
def toBinaryString : java.lang.String
def toHexString : java.lang.String
def toOctalString : java.lang.String
Methods inherited from Ordered
<, >, <=, >=, compareTo
Methods inherited from Proxy
hashCode, equals, toString
Methods inherited from AnyRef
getClass, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Method Details
def self : Any
Overrides
Proxy.self

def compare(y : Long) : Int
Result of comparing this with operand that. returns x where x < 0 iff this < that x == 0 iff this == that x > 0 iff this > that
Overrides
Ordered.compare

def min(y : Long) : Long

def max(y : Long) : Long

def abs : Long

def toBinaryString : java.lang.String

def toHexString : java.lang.String

def toOctalString : java.lang.String