object PosDouble
The companion object for PosDouble
that offers
factory methods that produce PosDouble
s,
implicit widening conversions from PosDouble
to
other numeric types, and maximum and minimum constant values
for PosDouble
.
- Source
- PosDouble.scala
- Alphabetic
- By Inheritance
- PosDouble
- 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: PosDouble
The largest value representable as a positive
Double
, which isPosDouble(1.7976931348623157E308)
. -
final
val
MinValue: PosDouble
The smallest value representable as a positive
Double
, which isPosDouble(4.9E-324)
. -
implicit macro
def
apply(value: Double): PosDouble
A factory method, implemented via a macro, that produces a
PosDouble
if passed a validDouble
literal, otherwise a compile time error.A factory method, implemented via a macro, that produces a
PosDouble
if passed a validDouble
literal, otherwise a compile time error.The macro that implements this method will inspect the specified
Double
expression at compile time. If the expression is a positiveDouble
literal, i.e., with a value greater than 0.0, it will return aPosDouble
representing that value. Otherwise, the passedDouble
expression is either a literal that is 0.0 or 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 inspectsDouble
literals at compile time, whereasfrom
inspectsDouble
values at run time.- value
the
Double
literal expression to inspect at compile time, and if positive, to return wrapped in aPosDouble
at run time.- returns
the specified, valid
Double
literal value wrapped in aPosDouble
. (If the specified expression is not a validDouble
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: Double): Option[PosDouble]
A factory method that produces an
Option[PosDouble]
given aDouble
value.A factory method that produces an
Option[PosDouble]
given aDouble
value.This method will inspect the passed
Double
value and if it is a positiveDouble
, i.e., a value greater than 0.0, it will return aPosDouble
representing that value, wrapped in aSome
. Otherwise, the passedDouble
value is 0.0 or negative, so this method will returnNone
.This factory method differs from the
apply
factory method in thatapply
is implemented via a macro that inspectsDouble
literals at compile time, whereasfrom
inspectsDouble
values at run time.- value
the
Double
to inspect, and if positive, return wrapped in aSome[PosDouble]
.- returns
the specified
Double
value wrapped in aSome[PosDouble]
, 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
posDoubleOrd: Ordering[PosDouble]
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(pos: PosDouble): Double
Implicit widening conversion from
PosDouble
toDouble
.Implicit widening conversion from
PosDouble
toDouble
.- pos
the
PosDouble
to widen- returns
the
Double
value underlying the specifiedPosDouble
-
implicit
def
widenToPosZDouble(pos: PosDouble): PosZDouble
Implicit widening conversion from
PosDouble
toPosZDouble
.Implicit widening conversion from
PosDouble
toPosZDouble
.- pos
the
PosDouble
to widen- returns
the
Double
value underlying the specifiedPosDouble
wrapped in aPosZDouble
.