kt-math
0.9.0
common
kt-math
/
org.gciatto.kt.math
/
BigIntegerRange
Big
Integer
Range
data
class
BigIntegerRange
(
val
start
:
BigInteger
,
val
endInclusive
:
BigInteger
)
:
ClosedRange
<
BigInteger
>
,
Iterable
<
BigInteger
>
Members
Constructors
Big
Integer
Range
Link copied to clipboard
constructor
(
start
:
BigInteger
,
endInclusive
:
BigInteger
)
Properties
end
Inclusive
Link copied to clipboard
open
override
val
endInclusive
:
BigInteger
start
Link copied to clipboard
open
override
val
start
:
BigInteger
Functions
contains
Link copied to clipboard
open
operator
fun
contains
(
value
:
BigInteger
)
:
Boolean
is
Empty
Link copied to clipboard
open
fun
isEmpty
(
)
:
Boolean
iterator
Link copied to clipboard
open
operator override
fun
iterator
(
)
:
Iterator
<
BigInteger
>