trait BigIntIsIntegral extends Integral[BigInt]
- Alphabetic
- By Inheritance
- BigIntIsIntegral
- Integral
- Numeric
- Ordering
- PartialOrdering
- Equiv
- Serializable
- Serializable
- Comparator
- AnyRef
- Any
- by orderingToOrdered
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Type Members
Abstract Value Members
-
abstract
def
compare(x: BigInt, y: BigInt): Int
Returns an integer whose sign communicates how x compares to y.
Returns an integer whose sign communicates how x compares to y.
The result sign has the following meaning:
- negative if x < y
- positive if x > y
- zero otherwise (if x == y)
- Definition Classes
- Ordering → Comparator
Concrete Value Members
-
def
<(that: BigIntIsIntegral): Boolean
Returns true if
this
is less thanthat
Returns true if
this
is less thanthat
- Implicit
- This member is added by an implicit conversion from BigIntIsIntegral to Ordered[BigIntIsIntegral] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type Ordering[BigIntIsIntegral] is in scope.
- Definition Classes
- Ordered
-
def
<=(that: BigIntIsIntegral): Boolean
Returns true if
this
is less than or equal tothat
.Returns true if
this
is less than or equal tothat
.- Implicit
- This member is added by an implicit conversion from BigIntIsIntegral to Ordered[BigIntIsIntegral] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type Ordering[BigIntIsIntegral] is in scope.
- Definition Classes
- Ordered
-
def
>(that: BigIntIsIntegral): Boolean
Returns true if
this
is greater thanthat
.Returns true if
this
is greater thanthat
.- Implicit
- This member is added by an implicit conversion from BigIntIsIntegral to Ordered[BigIntIsIntegral] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type Ordering[BigIntIsIntegral] is in scope.
- Definition Classes
- Ordered
-
def
>=(that: BigIntIsIntegral): Boolean
Returns true if
this
is greater than or equal tothat
.Returns true if
this
is greater than or equal tothat
.- Implicit
- This member is added by an implicit conversion from BigIntIsIntegral to Ordered[BigIntIsIntegral] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type Ordering[BigIntIsIntegral] is in scope.
- Definition Classes
- Ordered
-
def
abs(x: BigInt): BigInt
- Definition Classes
- Numeric
-
def
compareTo(that: BigIntIsIntegral): Int
Result of comparing
this
with operandthat
.Result of comparing
this
with operandthat
.- Implicit
- This member is added by an implicit conversion from BigIntIsIntegral to Ordered[BigIntIsIntegral] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type Ordering[BigIntIsIntegral] is in scope.
- Definition Classes
- Ordered → Comparable
-
def
equiv(x: BigInt, y: BigInt): Boolean
Return true if
x
==y
in the ordering.Return true if
x
==y
in the ordering.- Definition Classes
- Ordering → PartialOrdering → Equiv
-
def
fromInt(x: Int): BigInt
- Definition Classes
- BigIntIsIntegral → Numeric
-
def
gt(x: BigInt, y: BigInt): Boolean
Return true if
x
>y
in the ordering.Return true if
x
>y
in the ordering.- Definition Classes
- Ordering → PartialOrdering
-
def
gteq(x: BigInt, y: BigInt): Boolean
Return true if
x
>=y
in the ordering.Return true if
x
>=y
in the ordering.- Definition Classes
- Ordering → PartialOrdering
-
def
lt(x: BigInt, y: BigInt): Boolean
Return true if
x
<y
in the ordering.Return true if
x
<y
in the ordering.- Definition Classes
- Ordering → PartialOrdering
-
def
lteq(x: BigInt, y: BigInt): Boolean
Return true if
x
<=y
in the ordering.Return true if
x
<=y
in the ordering.- Definition Classes
- Ordering → PartialOrdering
-
def
max(x: BigInt, y: BigInt): BigInt
Return
x
ifx
>=y
, otherwisey
.Return
x
ifx
>=y
, otherwisey
.- Definition Classes
- Ordering
-
def
min(x: BigInt, y: BigInt): BigInt
Return
x
ifx
<=y
, otherwisey
.Return
x
ifx
<=y
, otherwisey
.- Definition Classes
- Ordering
-
def
minus(x: BigInt, y: BigInt): BigInt
- Definition Classes
- BigIntIsIntegral → Numeric
- implicit def mkNumericOps(lhs: BigInt): IntegralOps
-
implicit
def
mkOrderingOps(lhs: BigInt): BigIntIsIntegral.Ops
This implicit method augments
T
with the comparison operators defined inscala.math.Ordering.Ops
.This implicit method augments
T
with the comparison operators defined inscala.math.Ordering.Ops
.- Definition Classes
- Ordering
-
def
negate(x: BigInt): BigInt
- Definition Classes
- BigIntIsIntegral → Numeric
-
def
on[U](f: (U) ⇒ BigInt): Ordering[U]
Given f, a function from U into T, creates an Ordering[U] whose compare function is equivalent to:
Given f, a function from U into T, creates an Ordering[U] whose compare function is equivalent to:
def compare(x:U, y:U) = Ordering[T].compare(f(x), f(y))
- Definition Classes
- Ordering
-
def
one: BigInt
- Definition Classes
- Numeric
-
def
plus(x: BigInt, y: BigInt): BigInt
- Definition Classes
- BigIntIsIntegral → Numeric
-
def
quot(x: BigInt, y: BigInt): BigInt
- Definition Classes
- BigIntIsIntegral → Integral
-
def
rem(x: BigInt, y: BigInt): BigInt
- Definition Classes
- BigIntIsIntegral → Integral
-
def
reverse: Ordering[BigInt]
Return the opposite ordering of this one.
Return the opposite ordering of this one.
- Definition Classes
- Ordering → PartialOrdering
-
def
reversed(): Comparator[BigInt]
- Definition Classes
- Comparator
-
def
signum(x: BigInt): Int
- Definition Classes
- Numeric
-
def
thenComparing[U <: Comparable[_ >: U]](arg0: java.util.function.Function[_ >: BigInt, _ <: U]): Comparator[BigInt]
- Definition Classes
- Comparator
-
def
thenComparing[U](arg0: java.util.function.Function[_ >: BigInt, _ <: U], arg1: Comparator[_ >: U]): Comparator[BigInt]
- Definition Classes
- Comparator
-
def
thenComparing(arg0: Comparator[_ >: BigInt]): Comparator[BigInt]
- Definition Classes
- Comparator
-
def
thenComparingDouble(arg0: ToDoubleFunction[_ >: BigInt]): Comparator[BigInt]
- Definition Classes
- Comparator
-
def
thenComparingInt(arg0: ToIntFunction[_ >: BigInt]): Comparator[BigInt]
- Definition Classes
- Comparator
-
def
thenComparingLong(arg0: ToLongFunction[_ >: BigInt]): Comparator[BigInt]
- Definition Classes
- Comparator
-
def
times(x: BigInt, y: BigInt): BigInt
- Definition Classes
- BigIntIsIntegral → Numeric
-
def
toDouble(x: BigInt): Double
- Definition Classes
- BigIntIsIntegral → Numeric
-
def
toFloat(x: BigInt): Float
- Definition Classes
- BigIntIsIntegral → Numeric
-
def
toInt(x: BigInt): Int
- Definition Classes
- BigIntIsIntegral → Numeric
-
def
toLong(x: BigInt): Long
- Definition Classes
- BigIntIsIntegral → Numeric
-
def
tryCompare(x: BigInt, y: BigInt): Some[Int]
Returns whether a comparison between
x
andy
is defined, and if so the result ofcompare(x, y)
.Returns whether a comparison between
x
andy
is defined, and if so the result ofcompare(x, y)
.- Definition Classes
- Ordering → PartialOrdering
-
def
zero: BigInt
- Definition Classes
- Numeric
Shadowed Implicit Value Members
-
def
compare(that: BigIntIsIntegral): Int
Result of comparing
this
with operandthat
.Result of comparing
this
with operandthat
.Implement this method to determine how instances of A will be sorted.
Returns
x
where:x < 0
whenthis < that
x == 0
whenthis == that
x > 0
whenthis > that
- Implicit
- This member is added by an implicit conversion from BigIntIsIntegral to Ordered[BigIntIsIntegral] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type Ordering[BigIntIsIntegral] is in scope.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(bigIntIsIntegral: Ordered[BigIntIsIntegral]).compare(that)
- Definition Classes
- Ordered
This is the documentation for the Scala standard library.
Package structure
The scala package contains core types like
Int
,Float
,Array
orOption
which are accessible in all Scala compilation units without explicit qualification or imports.Notable packages include:
scala.collection
and its sub-packages contain Scala's collections frameworkscala.collection.immutable
- Immutable, sequential data-structures such asVector
,List
,Range
,HashMap
orHashSet
scala.collection.mutable
- Mutable, sequential data-structures such asArrayBuffer
,StringBuilder
,HashMap
orHashSet
scala.collection.concurrent
- Mutable, concurrent data-structures such asTrieMap
scala.collection.parallel.immutable
- Immutable, parallel data-structures such asParVector
,ParRange
,ParHashMap
orParHashSet
scala.collection.parallel.mutable
- Mutable, parallel data-structures such asParArray
,ParHashMap
,ParTrieMap
orParHashSet
scala.concurrent
- Primitives for concurrent programming such asFutures
andPromises
scala.io
- Input and output operationsscala.math
- Basic math functions and additional numeric types likeBigInt
andBigDecimal
scala.sys
- Interaction with other processes and the operating systemscala.util.matching
- Regular expressionsOther packages exist. See the complete list on the right.
Additional parts of the standard library are shipped as separate libraries. These include:
scala.reflect
- Scala's reflection API (scala-reflect.jar)scala.xml
- XML parsing, manipulation, and serialization (scala-xml.jar)scala.swing
- A convenient wrapper around Java's GUI framework called Swing (scala-swing.jar)scala.util.parsing
- Parser combinators (scala-parser-combinators.jar)Automatic imports
Identifiers in the scala package and the
scala.Predef
object are always in scope by default.Some of these identifiers are type aliases provided as shortcuts to commonly used classes. For example,
List
is an alias forscala.collection.immutable.List
.Other aliases refer to classes provided by the underlying platform. For example, on the JVM,
String
is an alias forjava.lang.String
.