object PosLong
The companion object for PosLong that offers
factory methods that produce PosLongs, implicit
widening conversions from PosLong to other
numeric types, and maximum and minimum constant values for
PosLong.
- Source
- PosLong.scala
- Alphabetic
- By Inheritance
- PosLong
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
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: PosLong
The largest value representable as a positive
Long, which isPosLong(9223372036854775807). - final val MinValue: PosLong
The smallest value representable as a positive
Long, which isPosLong(1L). - implicit macro def apply(value: Long): PosLong
A factory method, implemented via a macro, that produces a
PosLongif passed a validLongliteral, otherwise a compile time error.A factory method, implemented via a macro, that produces a
PosLongif passed a validLongliteral, otherwise a compile time error.The macro that implements this method will inspect the specified
Longexpression at compile time. If the expression is a positiveLongliteral, i.e., with a value greater than 0, it will return aPosLongrepresenting that value. Otherwise, the passedLongexpression is either a literal that is 0 or negative, or is not a literal, so this method will give a compiler error.This factory method differs from the
fromfactory method in that this method is implemented via a macro that inspectsLongliterals at compile time, whereasfrominspectsLongvalues at run time.- value
the
Longliteral expression to inspect at compile time, and if positive, to return wrapped in aPosLongat run time.- returns
the specified, valid
Longliteral value wrapped in aPosLong. (If the specified expression is not a validLongliteral, the invocation of this method will not compile.)
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def from(value: Long): Option[PosLong]
A factory method that produces an
Option[PosLong]given aLongvalue.A factory method that produces an
Option[PosLong]given aLongvalue.This method will inspect the passed
Longvalue and if it is a positiveLong, i.e., a value greater than 0, it will return aPosLongrepresenting that value, wrapped in aSome. Otherwise, the passedLongvalue is 0 or negative, so this method will returnNone.This factory method differs from the
applyfactory method in thatapplyis implemented via a macro that inspectsLongliterals at compile time, whereasfrominspectsLongvalues at run time.- value
the
Longto inspect, and if positive, return wrapped in aSome[PosLong].- returns
the specified
Longvalue wrapped in aSome[PosLong], if it is positive, elseNone.
- final def getClass(): Class[_ <: AnyRef]
- 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 posLongOrd: Ordering[PosLong]
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(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- implicit def widenToDouble(pos: PosLong): Double
Implicit widening conversion from
PosLongtoDouble.Implicit widening conversion from
PosLongtoDouble.- pos
the
PosLongto widen- returns
the
Longvalue underlying the specifiedPosLong, widened toDouble.
- implicit def widenToFloat(pos: PosLong): Float
Implicit widening conversion from
PosLongtoFloat.Implicit widening conversion from
PosLongtoFloat.- pos
the
PosLongto widen- returns
the
Longvalue underlying the specifiedPosLong, widened toFloat.
- implicit def widenToLong(pos: PosLong): Long
Implicit widening conversion from
PosLongtoLong.Implicit widening conversion from
PosLongtoLong.- pos
the
PosLongto widen- returns
the
Longvalue underlying the specifiedPosLong.
- implicit def widenToPosDouble(pos: PosLong): PosDouble
Implicit widening conversion from
PosLongtoPosDouble.Implicit widening conversion from
PosLongtoPosDouble.- pos
the
PosLongto widen- returns
the
Longvalue underlying the specifiedPosLong, widened toDoubleand wrapped in aPosDouble.
- implicit def widenToPosFloat(pos: PosLong): PosFloat
Implicit widening conversion from
PosLongtoPosFloat.Implicit widening conversion from
PosLongtoPosFloat.- pos
the
PosLongto widen- returns
the
Longvalue underlying the specifiedPosLong, widened toFloatand wrapped in aPosFloat.
- implicit def widenToPosZDouble(pos: PosLong): PosZDouble
Implicit widening conversion from
PosLongtoPosZDouble.Implicit widening conversion from
PosLongtoPosZDouble.- pos
the
PosLongto widen- returns
the
Longvalue underlying the specifiedPosLong, widened toDoubleand wrapped in aPosZDouble.
- implicit def widenToPosZFloat(pos: PosLong): PosZFloat
Implicit widening conversion from
PosLongtoPosZFloat.Implicit widening conversion from
PosLongtoPosZFloat.- pos
the
PosLongto widen- returns
the
Longvalue underlying the specifiedPosLong, widened toFloatand wrapped in aPosZFloat.
- implicit def widenToPosZLong(pos: PosLong): PosZLong
Implicit widening conversion from
PosLongtoPosZLong.Implicit widening conversion from
PosLongtoPosZLong.- pos
the
PosLongto widen- returns
the
Longvalue underlying the specifiedPosLongwrapped in aPosZLong.