object NegFiniteFloat
The companion object for NegFiniteFloat that offers
factory methods that produce NegFiniteFloats,
implicit widening conversions from NegFiniteFloat to
other numeric types, and maximum and minimum constant values
for NegFiniteFloat.
- Source
- NegFiniteFloat.scala
- Alphabetic
- By Inheritance
- NegFiniteFloat
- 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: NegFiniteFloatThe largest value representable as a finite negative Float, which isNegFiniteFloat(-1.4E-45).
-   final  val MinValue: NegFiniteFloatThe smallest value representable as a finite negative Float, which isNegFiniteFloat(-3.4028235E38).
-   implicit macro  def apply(value: Float): NegFiniteFloatA factory method, implemented via a macro, that produces a NegFiniteFloatif passed a validFloatliteral, otherwise a compile time error.A factory method, implemented via a macro, that produces a NegFiniteFloatif passed a validFloatliteral, otherwise a compile time error.The macro that implements this method will inspect the specified Floatexpression at compile time. If the expression is a finite negativeFloatliteral, it will return aNegFiniteFloatrepresenting that value. Otherwise, the passedFloatexpression is either a literal that is not finite 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 inspectsFloatliterals at compile time, whereasfrominspectsFloatvalues at run time.- value
- the - Floatliteral expression to inspect at compile time, and if finite negative, to return wrapped in a- NegFiniteFloatat run time.
- returns
- the specified, valid - Floatliteral value wrapped in a- NegFiniteFloat. (If the specified expression is not a valid- Floatliteral, 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()
 
-    def ensuringValid(value: Float): NegFiniteFloatA factory/assertion method that produces a NegFiniteFloatgiven a validFloatvalue, or throwsAssertionError, if given an invalidFloatvalue.A factory/assertion method that produces a NegFiniteFloatgiven a validFloatvalue, or throwsAssertionError, if given an invalidFloatvalue.Note: you should use this method only when you are convinced that it will always succeed, i.e., never throw an exception. It is good practice to add a comment near the invocation of this method indicating why you think it will always succeed to document your reasoning. If you are not sure an ensuringValidcall will always succeed, you should use one of the other factory or validation methods provided on this object instead:isValid,tryingValid,passOrElse,goodOrElse, orrightOrElse.This method will inspect the passed Floatvalue and if it is a finite negativeFloat, it will return aNegFiniteFloatrepresenting that value. Otherwise, the passedFloatvalue is not finite negative, so this method will throwAssertionError.This factory method differs from the applyfactory method in thatapplyis implemented via a macro that inspectsFloatliterals at compile time, whereasfrominspectsFloatvalues at run time. It differs from a vanillaassertorensuringcall in that you get something you didn't already have if the assertion succeeds: a type that promises aFloatis positive.- value
- the - Floatto inspect, and if finite negative, return wrapped in a- NegFiniteFloat.
- returns
- the specified - Floatvalue wrapped in a- NegFiniteFloat, if it is finite negative, else throws- AssertionError.
 - Exceptions thrown
- AssertionErrorif the passed value is not finite negative
 
-   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: Float): Option[NegFiniteFloat]A factory method that produces an Option[NegFiniteFloat]given aFloatvalue.A factory method that produces an Option[NegFiniteFloat]given aFloatvalue.This method will inspect the passed Floatvalue and if it is a finite negativeFloat, it will return aNegFiniteFloatrepresenting that value wrapped in aSome. Otherwise, the passedFloatvalue is not finite negative, so this method will returnNone.This factory method differs from the applyfactory method in thatapplyis implemented via a macro that inspectsFloatliterals at compile time, whereasfrominspectsFloatvalues at run time.- value
- the - Floatto inspect, and if finite negative, return wrapped in a- Some[NegFiniteFloat].
- returns
- the specified - Floatvalue wrapped in a- Some[NegFiniteFloat], if it is finite negative, else- None.
 
-    def fromOrElse(value: Float, default: => NegFiniteFloat): NegFiniteFloatA factory method that produces a NegFiniteFloatgiven aFloatvalue and a defaultNegFiniteFloat.A factory method that produces a NegFiniteFloatgiven aFloatvalue and a defaultNegFiniteFloat.This method will inspect the passed Floatvalue and if it is a finite negativeFloat, it will return aNegFiniteFloatrepresenting that value. Otherwise, the passedFloatvalue is not finite negative, so this method will return the passeddefaultvalue.This factory method differs from the applyfactory method in thatapplyis implemented via a macro that inspectsFloatliterals at compile time, whereasfrominspectsFloatvalues at run time.- value
- the - Floatto inspect, and if finite negative, return.
- default
- the - NegFiniteFloatto return if the passed- Floatvalue is not finite negative.
- returns
- the specified - Floatvalue wrapped in a- NegFiniteFloat, if it is finite negative, else the- default- NegFiniteFloatvalue.
 
-   final  def getClass(): Class[_ <: AnyRef]- Definition Classes
- AnyRef → Any
- Annotations
- @native()
 
-    def goodOrElse[B](value: Float)(f: (Float) => B): Or[NegFiniteFloat, B]A factory/validation method that produces a NegFiniteFloat, wrapped in aGood, given a validFloatvalue, or if the givenFloatis invalid, an error value of typeBproduced by passing the given invalidFloatvalue to the given functionf, wrapped in aBad.A factory/validation method that produces a NegFiniteFloat, wrapped in aGood, given a validFloatvalue, or if the givenFloatis invalid, an error value of typeBproduced by passing the given invalidFloatvalue to the given functionf, wrapped in aBad.This method will inspect the passed Floatvalue and if it is a finite negativeFloat, it will return aNegFiniteFloatrepresenting that value, wrapped in aGood. Otherwise, the passedFloatvalue is not finite negative, so this method will return a result of typeBobtained by passing the invalidFloatvalue to the given functionf, wrapped in aBad.This factory method differs from the applyfactory method in thatapplyis implemented via a macro that inspectsFloatliterals at compile time, whereas this method inspectsFloatvalues at run time.- value
- the - Floatto inspect, and if finite negative, return wrapped in a- Good(NegFiniteFloat).
- returns
- the specified - Floatvalue wrapped in a- Good(NegFiniteFloat), if it is finite negative, else a- Bad(f(value)).
 
-    def hashCode(): Int- Definition Classes
- AnyRef → Any
- Annotations
- @native()
 
-   final  def isInstanceOf[T0]: Boolean- Definition Classes
- Any
 
-    def isValid(value: Float): BooleanA predicate method that returns true if a given Floatvalue is finite negative.A predicate method that returns true if a given Floatvalue is finite negative.- value
- the - Floatto inspect, and if finite negative, return true.
- returns
- true if the specified - Floatis finite negative, else false.
 
-   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 ordering: Ordering[NegFiniteFloat]Implicit Ordering instance. 
-    def passOrElse[E](value: Float)(f: (Float) => E): Validation[E]A validation method that produces a Passgiven a validFloatvalue, or an error value of typeEproduced by passing the given invalidIntvalue to the given functionf, wrapped in aFail.A validation method that produces a Passgiven a validFloatvalue, or an error value of typeEproduced by passing the given invalidIntvalue to the given functionf, wrapped in aFail.This method will inspect the passed Floatvalue and if it is a finite negativeFloat, it will return aPass. Otherwise, the passedFloatvalue is finite negative, so this method will return a result of typeEobtained by passing the invalidFloatvalue to the given functionf, wrapped in aFail.This factory method differs from the applyfactory method in thatapplyis implemented via a macro that inspectsFloatliterals at compile time, whereas this method inspectsFloatvalues at run time.- value
- the - Floatto validate that it is finite negative.
- returns
- a - Passif the specified- Floatvalue is finite negative, else a- Failcontaining an error value produced by passing the specified- Floatto the given function- f.
 
-    def rightOrElse[L](value: Float)(f: (Float) => L): Either[L, NegFiniteFloat]A factory/validation method that produces a NegFiniteFloat, wrapped in aRight, given a validIntvalue, or if the givenIntis invalid, an error value of typeLproduced by passing the given invalidIntvalue to the given functionf, wrapped in aLeft.A factory/validation method that produces a NegFiniteFloat, wrapped in aRight, given a validIntvalue, or if the givenIntis invalid, an error value of typeLproduced by passing the given invalidIntvalue to the given functionf, wrapped in aLeft.This method will inspect the passed Intvalue and if it is a finite negativeInt, it will return aNegFiniteFloatrepresenting that value, wrapped in aRight. Otherwise, the passedIntvalue is not finite negative, so this method will return a result of typeLobtained by passing the invalidIntvalue to the given functionf, wrapped in aLeft.This factory method differs from the applyfactory method in thatapplyis implemented via a macro that inspectsIntliterals at compile time, whereas this method inspectsIntvalues at run time.- value
- the - Intto inspect, and if finite negative, return wrapped in a- Right(NegFiniteFloat).
- returns
- the specified - Intvalue wrapped in a- Right(NegFiniteFloat), if it is finite negative, else a- Left(f(value)).
 
-   final  def synchronized[T0](arg0: => T0): T0- Definition Classes
- AnyRef
 
-    def toString(): String- Definition Classes
- AnyRef → Any
 
-    def tryingValid(value: Float): Try[NegFiniteFloat]A factory/validation method that produces a NegFiniteFloat, wrapped in aSuccess, given a validFloatvalue, or if the givenFloatis invalid, anAssertionError, wrapped in aFailure.A factory/validation method that produces a NegFiniteFloat, wrapped in aSuccess, given a validFloatvalue, or if the givenFloatis invalid, anAssertionError, wrapped in aFailure.This method will inspect the passed Floatvalue and if it is a finite negativeFloat, it will return aNegFiniteFloatrepresenting that value, wrapped in aSuccess. Otherwise, the passedFloatvalue is not finite negative, so this method will return anAssertionError, wrapped in aFailure.This factory method differs from the applyfactory method in thatapplyis implemented via a macro that inspectsFloatliterals at compile time, whereas this method inspectsFloatvalues at run time.- value
- the - Floatto inspect, and if finite negative, return wrapped in a- Success(NegFiniteFloat).
- returns
- the specified - Floatvalue wrapped in a- Success(NegFiniteFloat), if it is finite negative, else a- Failure(AssertionError).
 
-   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: NegFiniteFloat): DoubleImplicit widening conversion from NegFiniteFloattoDouble.Implicit widening conversion from NegFiniteFloattoDouble.- pos
- the - NegFiniteFloatto widen
- returns
- the - Floatvalue underlying the specified- NegFiniteFloat, widened to- Double.
 
-   implicit  def widenToFiniteDouble(pos: NegFiniteFloat): FiniteDoubleImplicit widening conversion from NegFiniteFloattoFiniteDouble.Implicit widening conversion from NegFiniteFloattoFiniteDouble.- pos
- the - NegFiniteFloatto widen
- returns
- the - Floatvalue underlying the specified- NegFiniteFloat, widened to- Doubleand wrapped in a- FiniteDouble.
 
-   implicit  def widenToFiniteFloat(pos: NegFiniteFloat): FiniteFloatImplicit widening conversion from NegFiniteFloattoFiniteFloat.Implicit widening conversion from NegFiniteFloattoFiniteFloat.- pos
- the - NegFiniteFloatto widen
- returns
- the - Floatvalue underlying the specified- NegFiniteFloat, widened to- Floatand wrapped in a- FiniteFloat.
 
-   implicit  def widenToFloat(pos: NegFiniteFloat): FloatImplicit widening conversion from NegFiniteFloattoFloat.Implicit widening conversion from NegFiniteFloattoFloat.- pos
- the - NegFiniteFloatto widen
- returns
- the - Floatvalue underlying the specified- NegFiniteFloat
 
-   implicit  def widenToNegDouble(pos: NegFiniteFloat): NegDoubleImplicit widening conversion from NegFiniteFloattoNegDouble.Implicit widening conversion from NegFiniteFloattoNegDouble.- pos
- the - NegFiniteFloatto widen
- returns
- the - Floatvalue underlying the specified- NegFiniteFloat, widened to- Doubleand wrapped in a- NegDouble.
 
-   implicit  def widenToNegFiniteDouble(pos: NegFiniteFloat): NegFiniteDoubleImplicit widening conversion from NegFiniteFloattoNegFiniteDouble.Implicit widening conversion from NegFiniteFloattoNegFiniteDouble.- pos
- the - NegFiniteFloatto widen
- returns
- the - Floatvalue underlying the specified- NegFiniteFloat, widened to- Doubleand wrapped in a- NegFiniteDouble.
 
-   implicit  def widenToNegFloat(pos: NegFiniteFloat): NegFloatImplicit widening conversion from NegFiniteFloattoNegFloat.Implicit widening conversion from NegFiniteFloattoNegFloat.- pos
- the - NegFiniteFloatto widen
- returns
- the - Floatvalue underlying the specified- NegFiniteFloat, widened to- Floatand wrapped in a- NegFloat.
 
-   implicit  def widenToNegZDouble(pos: NegFiniteFloat): NegZDoubleImplicit widening conversion from NegFiniteFloattoNegZDouble.Implicit widening conversion from NegFiniteFloattoNegZDouble.- pos
- the - NegFiniteFloatto widen
- returns
- the - Floatvalue underlying the specified- NegFiniteFloat, widened to- Doubleand wrapped in a- NegZDouble.
 
-   implicit  def widenToNegZFiniteDouble(pos: NegFiniteFloat): NegZFiniteDoubleImplicit widening conversion from NegFiniteFloattoNegZFiniteDouble.Implicit widening conversion from NegFiniteFloattoNegZFiniteDouble.- pos
- the - NegFiniteFloatto widen
- returns
- the - Floatvalue underlying the specified- NegFiniteFloat, widened to- Doubleand wrapped in a- NegZFiniteDouble.
 
-   implicit  def widenToNegZFiniteFloat(pos: NegFiniteFloat): NegZFiniteFloatImplicit widening conversion from NegFiniteFloattoNegZFiniteFloat.Implicit widening conversion from NegFiniteFloattoNegZFiniteFloat.- pos
- the - NegFiniteFloatto widen
- returns
- the - Floatvalue underlying the specified- NegFiniteFloat, widened to- Floatand wrapped in a- NegZFiniteFloat.
 
-   implicit  def widenToNegZFloat(pos: NegFiniteFloat): NegZFloatImplicit widening conversion from NegFiniteFloattoNegZFloat.Implicit widening conversion from NegFiniteFloattoNegZFloat.- pos
- the - NegFiniteFloatto widen
- returns
- the - Floatvalue underlying the specified- NegFiniteFloat, widened to- Floatand wrapped in a- NegZFloat.
 
-   implicit  def widenToNonZeroDouble(pos: NegFiniteFloat): NonZeroDoubleImplicit widening conversion from NegFiniteFloattoNonZeroDouble.Implicit widening conversion from NegFiniteFloattoNonZeroDouble.- pos
- the - NegFiniteFloatto widen
- returns
- the - Floatvalue underlying the specified- NegFiniteFloat, widened to- Doubleand wrapped in a- NonZeroDouble.
 
-   implicit  def widenToNonZeroFloat(pos: NegFiniteFloat): NonZeroFloatImplicit widening conversion from NegFiniteFloattoNonZeroFloat.Implicit widening conversion from NegFiniteFloattoNonZeroFloat.- pos
- the - NegFiniteFloatto widen
- returns
- the - Floatvalue underlying the specified- NegFiniteFloat, widened to- Floatand wrapped in a- NonZeroFloat.