object NegFloat
The companion object for NegFloat
that offers
factory methods that produce NegFloat
s,
implicit widening conversions from NegFloat
to
other numeric types, and maximum and minimum constant values
for NegFloat
.
- Source
- NegFloat.scala
- Alphabetic
- By Inheritance
- NegFloat
- 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: NegFloat
The largest value representable as a megative
Float
, which isNegFloat(-1.4E-45)
.The largest value representable as a megative
Float
, which isNegFloat(-1.4E-45)
. -
final
val
MinValue: NegFloat
The smallest value representable as a megative
Float
, which isNegFloat(-3.4028235E38)
.The smallest value representable as a megative
Float
, which isNegFloat(-3.4028235E38)
. -
final
val
NegativeInfinity: NegFloat
The negative infinity value, which is
NegFloat.ensuringValid(Float.NegativeInfinity)
.The negative infinity value, which is
NegFloat.ensuringValid(Float.NegativeInfinity)
. -
implicit macro
def
apply(value: Float): NegFloat
A factory method, implemented via a macro, that produces a
NegFloat
if passed a validFloat
literal, otherwise a compile time error.A factory method, implemented via a macro, that produces a
NegFloat
if passed a validFloat
literal, otherwise a compile time error.The macro that implements this method will inspect the specified
Float
expression at compile time. If the expression is a megativeFloat
literal, it will return aNegFloat
representing that value. Otherwise, the passedFloat
expression is either a literal that is not megative, 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 inspectsFloat
literals at compile time, whereasfrom
inspectsFloat
values at run time.- value
the
Float
literal expression to inspect at compile time, and if megative, to return wrapped in aNegFloat
at run time.- returns
the specified, valid
Float
literal value wrapped in aNegFloat
. (If the specified expression is not a validFloat
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
- @throws( ... )
-
def
ensuringValid(value: Float): NegFloat
A factory/assertion method that produces a
NegFloat
given a validFloat
value, or throwsAssertionError
, if given an invalidFloat
value.A factory/assertion method that produces a
NegFloat
given a validFloat
value, or throwsAssertionError
, if given an invalidFloat
value.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
ensuringValid
call 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
Float
value and if it is a megativeFloat
, it will return aNegFloat
representing that value. Otherwise, the passedFloat
value is not megative, so this method will throwAssertionError
.This factory method differs from the
apply
factory method in thatapply
is implemented via a macro that inspectsFloat
literals at compile time, whereasfrom
inspectsFloat
values at run time. It differs from a vanillaassert
orensuring
call in that you get something you didn't already have if the assertion succeeds: a type that promises aFloat
is positive.- value
the
Float
to inspect, and if megative, return wrapped in aNegFloat
.- returns
the specified
Float
value wrapped in aNegFloat
, if it is megative, else throwsAssertionError
.
- Exceptions thrown
AssertionError
if the passed value is not megative
-
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: Float): Option[NegFloat]
A factory method that produces an
Option[NegFloat]
given aFloat
value.A factory method that produces an
Option[NegFloat]
given aFloat
value.This method will inspect the passed
Float
value and if it is a megativeFloat
, it will return aNegFloat
representing that value wrapped in aSome
. Otherwise, the passedFloat
value is not megative, so this method will returnNone
.This factory method differs from the
apply
factory method in thatapply
is implemented via a macro that inspectsFloat
literals at compile time, whereasfrom
inspectsFloat
values at run time.- value
the
Float
to inspect, and if megative, return wrapped in aSome[NegFloat]
.- returns
the specified
Float
value wrapped in aSome[NegFloat]
, if it is megative, elseNone
.
-
def
fromOrElse(value: Float, default: ⇒ NegFloat): NegFloat
A factory method that produces a
NegFloat
given aFloat
value and a defaultNegFloat
.A factory method that produces a
NegFloat
given aFloat
value and a defaultNegFloat
.This method will inspect the passed
Float
value and if it is a megativeFloat
, it will return aNegFloat
representing that value. Otherwise, the passedFloat
value is not megative, so this method will return the passeddefault
value.This factory method differs from the
apply
factory method in thatapply
is implemented via a macro that inspectsFloat
literals at compile time, whereasfrom
inspectsFloat
values at run time.- value
the
Float
to inspect, and if megative, return.- default
the
NegFloat
to return if the passedFloat
value is not megative.- returns
the specified
Float
value wrapped in aNegFloat
, if it is megative, else thedefault
NegFloat
value.
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
goodOrElse[B](value: Float)(f: (Float) ⇒ B): Or[NegFloat, B]
A factory/validation method that produces a
NegFloat
, wrapped in aGood
, given a validFloat
value, or if the givenFloat
is invalid, an error value of typeB
produced by passing the given invalidFloat
value to the given functionf
, wrapped in aBad
.A factory/validation method that produces a
NegFloat
, wrapped in aGood
, given a validFloat
value, or if the givenFloat
is invalid, an error value of typeB
produced by passing the given invalidFloat
value to the given functionf
, wrapped in aBad
.This method will inspect the passed
Float
value and if it is a megativeFloat
, it will return aNegFloat
representing that value, wrapped in aGood
. Otherwise, the passedFloat
value is not megative, so this method will return a result of typeB
obtained by passing the invalidFloat
value to the given functionf
, wrapped in aBad
.This factory method differs from the
apply
factory method in thatapply
is implemented via a macro that inspectsFloat
literals at compile time, whereas this method inspectsFloat
values at run time.- value
the
Float
to inspect, and if megative, return wrapped in aGood(NegFloat)
.- returns
the specified
Float
value wrapped in aGood(NegFloat)
, if it is megative, else aBad(f(value))
.
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
isValid(value: Float): Boolean
A predicate method that returns true if a given
Float
value is megative.A predicate method that returns true if a given
Float
value is megative.- value
the
Float
to inspect, and if megative, return true.- returns
true if the specified
Float
is megative, else false.
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
implicit
val
ordering: Ordering[NegFloat]
Implicit Ordering instance.
-
def
passOrElse[E](value: Float)(f: (Float) ⇒ E): Validation[E]
A validation method that produces a
Pass
given a validFloat
value, or an error value of typeE
produced by passing the given invalidInt
value to the given functionf
, wrapped in aFail
.A validation method that produces a
Pass
given a validFloat
value, or an error value of typeE
produced by passing the given invalidInt
value to the given functionf
, wrapped in aFail
.This method will inspect the passed
Float
value and if it is a megativeFloat
, it will return aPass
. Otherwise, the passedFloat
value is megative, so this method will return a result of typeE
obtained by passing the invalidFloat
value to the given functionf
, wrapped in aFail
.This factory method differs from the
apply
factory method in thatapply
is implemented via a macro that inspectsFloat
literals at compile time, whereas this method inspectsFloat
values at run time.- value
the
Float
to validate that it is megative.- returns
a
Pass
if the specifiedFloat
value is megative, else aFail
containing an error value produced by passing the specifiedFloat
to the given functionf
.
-
def
rightOrElse[L](value: Float)(f: (Float) ⇒ L): Either[L, NegFloat]
A factory/validation method that produces a
NegFloat
, wrapped in aRight
, given a validInt
value, or if the givenInt
is invalid, an error value of typeL
produced by passing the given invalidInt
value to the given functionf
, wrapped in aLeft
.A factory/validation method that produces a
NegFloat
, wrapped in aRight
, given a validInt
value, or if the givenInt
is invalid, an error value of typeL
produced by passing the given invalidInt
value to the given functionf
, wrapped in aLeft
.This method will inspect the passed
Int
value and if it is a megativeInt
, it will return aNegFloat
representing that value, wrapped in aRight
. Otherwise, the passedInt
value is not megative, so this method will return a result of typeL
obtained by passing the invalidInt
value to the given functionf
, wrapped in aLeft
.This factory method differs from the
apply
factory method in thatapply
is implemented via a macro that inspectsInt
literals at compile time, whereas this method inspectsInt
values at run time.- value
the
Int
to inspect, and if megative, return wrapped in aRight(NegFloat)
.- returns
the specified
Int
value wrapped in aRight(NegFloat)
, if it is megative, else aLeft(f(value))
.
-
def
sumOf(first: NegFloat, second: NegZFloat, rest: NegZFloat*): NegFloat
Returns the
NegFloat
sum of the passedNegFloat
valuefirst
, theNegZFloat
valuesecond
, and theNegZFloat
values passed as varargsrest
.Returns the
NegFloat
sum of the passedNegFloat
valuefirst
, theNegZFloat
valuesecond
, and theNegZFloat
values passed as varargsrest
.This method will always succeed (not throw an exception) because adding a negative Float and one or more non-positive Floats will always result in another negative Float value (though the result may be infinity).
This overloaded form of the
sumOf
method can sum more than two values, but unlike its two-arg sibling, will entail boxing. -
def
sumOf(x: NegFloat, y: NegZFloat): NegFloat
Returns the
NegFloat
sum of the passedNegFloat
valuex
andNegZFloat
valuey
.Returns the
NegFloat
sum of the passedNegFloat
valuex
andNegZFloat
valuey
.This method will always succeed (not throw an exception) because adding a negative Float and non-positive Float will always result in another negative Float value (though the result may be infinity).
This overloaded form of the method is used when there are just two arguments so that boxing is avoided. The overloaded
sumOf
that takes a varargs ofNegZFloat
starting at the third parameter can sum more than two values, but will entail boxing and may therefore be less efficient. -
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
tryingValid(value: Float): Try[NegFloat]
A factory/validation method that produces a
NegFloat
, wrapped in aSuccess
, given a validFloat
value, or if the givenFloat
is invalid, anAssertionError
, wrapped in aFailure
.A factory/validation method that produces a
NegFloat
, wrapped in aSuccess
, given a validFloat
value, or if the givenFloat
is invalid, anAssertionError
, wrapped in aFailure
.This method will inspect the passed
Float
value and if it is a megativeFloat
, it will return aNegFloat
representing that value, wrapped in aSuccess
. Otherwise, the passedFloat
value is not megative, so this method will return anAssertionError
, wrapped in aFailure
.This factory method differs from the
apply
factory method in thatapply
is implemented via a macro that inspectsFloat
literals at compile time, whereas this method inspectsFloat
values at run time.- value
the
Float
to inspect, and if megative, return wrapped in aSuccess(NegFloat)
.- returns
the specified
Float
value wrapped in aSuccess(NegFloat)
, if it is megative, else aFailure(AssertionError)
.
-
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
- @throws( ... )
-
implicit
def
widenToDouble(pos: NegFloat): Double
Implicit widening conversion from
NegFloat
toDouble
.Implicit widening conversion from
NegFloat
toDouble
.- pos
the
NegFloat
to widen- returns
the
Float
value underlying the specifiedNegFloat
, widened toDouble
.
-
implicit
def
widenToFloat(pos: NegFloat): Float
Implicit widening conversion from
NegFloat
toFloat
.Implicit widening conversion from
NegFloat
toFloat
.- pos
the
NegFloat
to widen- returns
the
Float
value underlying the specifiedNegFloat
-
implicit
def
widenToNegDouble(pos: NegFloat): NegDouble
Implicit widening conversion from
NegFloat
toNegDouble
.Implicit widening conversion from
NegFloat
toNegDouble
.- pos
the
NegFloat
to widen- returns
the
Float
value underlying the specifiedNegFloat
, widened toDouble
and wrapped in aNegDouble
.
-
implicit
def
widenToNegZDouble(pos: NegFloat): NegZDouble
Implicit widening conversion from
NegFloat
toNegZDouble
.Implicit widening conversion from
NegFloat
toNegZDouble
.- pos
the
NegFloat
to widen- returns
the
Float
value underlying the specifiedNegFloat
, widened toDouble
and wrapped in aNegZDouble
.
-
implicit
def
widenToNegZFloat(pos: NegFloat): NegZFloat
Implicit widening conversion from
NegFloat
toNegZFloat
.Implicit widening conversion from
NegFloat
toNegZFloat
.- pos
the
NegFloat
to widen- returns
the
Float
value underlying the specifiedNegFloat
, widened toFloat
and wrapped in aNegZFloat
.
-
implicit
def
widenToNonZeroDouble(pos: NegFloat): NonZeroDouble
Implicit widening conversion from
NegFloat
toNonZeroDouble
.Implicit widening conversion from
NegFloat
toNonZeroDouble
.- pos
the
NegFloat
to widen- returns
the
Float
value underlying the specifiedNegFloat
, widened toDouble
and wrapped in aNonZeroDouble
.
-
implicit
def
widenToNonZeroFloat(pos: NegFloat): NonZeroFloat
Implicit widening conversion from
NegFloat
toNonZeroFloat
.Implicit widening conversion from
NegFloat
toNonZeroFloat
.- pos
the
NegFloat
to widen- returns
the
Float
value underlying the specifiedNegFloat
, widened toFloat
and wrapped in aNonZeroFloat
.