object PosZLong
The companion object for PosZLong
that offers
factory methods that produce PosZLong
s, implicit
widening conversions from PosZLong
to other
numeric types, and maximum and minimum constant values for
PosZLong
.
- Source
- PosZLong.scala
- Alphabetic
- By Inheritance
- PosZLong
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
val
MaxValue: PosZLong
The largest value representable as a non-negative
Long
, which isPosZLong(9223372036854775807)
. -
final
val
MinValue: PosZLong
The smallest value representable as a non-negative
Long
, which isPosZLong(0)
. -
implicit macro
def
apply(value: Long): PosZLong
A factory method, implemented via a macro, that produces a
PosZLong
if passed a validLong
literal, otherwise a compile time error.A factory method, implemented via a macro, that produces a
PosZLong
if passed a validLong
literal, otherwise a compile time error.The macro that implements this method will inspect the specified
Long
expression at compile time. If the expression is a non-negativeLong
literal, i.e., with a value greater than or equal to 0, it will return aPosZLong
representing that value. Otherwise, the passedLong
expression is either a literal that is negative, or is not a literal, so this method will give a compiler error.This factory method differs from the
from
factory method in that this method is implemented via a macro that inspectsLong
literals at compile time, whereasfrom
inspectsLong
values at run time.- value
the
Long
literal expression to inspect at compile time, and if non-negative, to return wrapped in aPosZLong
at run time.- returns
the specified, valid
Long
literal value wrapped in aPosZLong
. (If the specified expression is not a validLong
literal, the invocation of this method will not compile.)
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
from(value: Long): Option[PosZLong]
A factory method that produces an
Option[PosZLong]
given aLong
value.A factory method that produces an
Option[PosZLong]
given aLong
value.This method will inspect the passed
Long
value and if it is a non-negativeLong
, i.e., a value greater than or equal to 0, it will return aPosZLong
representing that value, wrapped in aSome
. Otherwise, the passedLong
value is negative, so this method will returnNone
.This factory method differs from the
apply
factory method in thatapply
is implemented via a macro that inspectsLong
literals at compile time, whereasfrom
inspectsLong
values at run time.- value
the
Long
to inspect, and if non-negative, return wrapped in aSome[PosZLong]
.- returns
the specified
Long
value wrapped in aSome[PosZLong]
, if it is positive, elseNone
.
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
implicit
val
posZLongOrd: Ordering[PosZLong]
Implicit Ordering instance.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
implicit
def
widenToDouble(poz: PosZLong): Double
Implicit widening conversion from
PosZLong
toDouble
.Implicit widening conversion from
PosZLong
toDouble
.- returns
the
Long
value underlying the specifiedPosZLong
, widened toDouble
.
-
implicit
def
widenToFloat(poz: PosZLong): Float
Implicit widening conversion from
PosZLong
toFloat
.Implicit widening conversion from
PosZLong
toFloat
.- returns
the
Long
value underlying the specifiedPosZLong
, widened toFloat
.
-
implicit
def
widenToLong(poz: PosZLong): Long
Implicit widening conversion from
PosZLong
toLong
.Implicit widening conversion from
PosZLong
toLong
.- returns
the
Long
value underlying the specifiedPosZLong
.
-
implicit
def
widenToPosZDouble(poz: PosZLong): PosZDouble
Implicit widening conversion from
PosZLong
toPosZDouble
.Implicit widening conversion from
PosZLong
toPosZDouble
.- returns
the
Long
value underlying the specifiedPosZLong
, widened toDouble
and wrapped in aPosZDouble
.
-
implicit
def
widenToPosZFloat(poz: PosZLong): PosZFloat
Implicit widening conversion from
PosZLong
toPosZFloat
.Implicit widening conversion from
PosZLong
toPosZFloat
.- returns
the
Long
value underlying the specifiedPosZLong
, widened toFloat
and wrapped in aPosZFloat
.