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
- 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: 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, it will return aPosLongrepresenting that value. Otherwise, the passedLongexpression is either a literal that is not positive, 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[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
ensuringValid(value: Long): PosLong
A factory/assertion method that produces an
PosLonggiven a validLongvalue, or throwsAssertionError, if given an invalidLongvalue.A factory/assertion method that produces an
PosLonggiven a validLongvalue, or throwsAssertionError, if given an invalidLongvalue.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
Longvalue and if it is a positiveLong, it will return aPosLongrepresenting that value. Otherwise, the passedLongvalue is not positive, so this method will throwAssertionError.This factory method differs from the
applyfactory method in thatapplyis implemented via a macro that inspectsLongliterals at compile time, whereasfrominspectsLongvalues 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 aLongis positive.- value
the
Longto inspect, and if positive, return wrapped in aPosLong.- returns
the specified
Longvalue wrapped in aPosLong, if it is positive, else throwsAssertionError.
- Exceptions thrown
AssertionErrorif the passed value is not positive
-
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[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, it will return aPosLongrepresenting that value, wrapped in aSome. Otherwise, the passedLongvalue is not positive, 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.
-
def
fromOrElse(value: Long, default: ⇒ PosLong): PosLong
A factory method that produces a
PosLonggiven aLongvalue and a defaultPosLong.A factory method that produces a
PosLonggiven aLongvalue and a defaultPosLong.This method will inspect the passed
Longvalue and if it is a positiveLong, it will return aPosLongrepresenting that value. Otherwise, the passedLongvalue is not positive, so this method will return the passeddefaultvalue.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.- default
the
PosLongto return if the passedLongvalue is not positive.- returns
the specified
Longvalue wrapped in aPosLong, if it is positive, else thedefaultPosLongvalue.
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
goodOrElse[B](value: Long)(f: (Long) ⇒ B): Or[PosLong, B]
A factory/validation method that produces a
PosLong, wrapped in aGood, given a validLongvalue, or if the givenLongis invalid, an error value of typeBproduced by passing the given invalidLongvalue to the given functionf, wrapped in aBad.A factory/validation method that produces a
PosLong, wrapped in aGood, given a validLongvalue, or if the givenLongis invalid, an error value of typeBproduced by passing the given invalidLongvalue to the given functionf, wrapped in aBad.This method will inspect the passed
Longvalue and if it is a positiveLong, it will return aPosLongrepresenting that value, wrapped in aGood. Otherwise, the passedLongvalue is not positive, so this method will return a result of typeBobtained by passing the invalidLongvalue to the given functionf, wrapped in aBad.This factory method differs from the
applyfactory method in thatapplyis implemented via a macro that inspectsLongliterals at compile time, whereas this method inspectsLongvalues at run time.- value
the
Longto inspect, and if positive, return wrapped in aGood(PosLong).- returns
the specified
Longvalue wrapped in aGood(PosLong), if it is positive, else aBad(f(value)).
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
isValid(value: Long): Boolean
A predicate method that returns true if a given
Longvalue is positive.A predicate method that returns true if a given
Longvalue is positive.- value
the
Longto inspect, and if positive, return true.- returns
true if the specified
Longis positive, 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[PosLong]
Implicit Ordering instance.
-
def
passOrElse[E](value: Long)(f: (Long) ⇒ E): Validation[E]
A validation method that produces a
Passgiven a validLongvalue, 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 validLongvalue, or an error value of typeEproduced by passing the given invalidIntvalue to the given functionf, wrapped in aFail.This method will inspect the passed
Longvalue and if it is a positiveLong, it will return aPass. Otherwise, the passedLongvalue is positive, so this method will return a result of typeEobtained by passing the invalidLongvalue to the given functionf, wrapped in aFail.This factory method differs from the
applyfactory method in thatapplyis implemented via a macro that inspectsLongliterals at compile time, whereas this method inspectsLongvalues at run time.- value
the
Longto validate that it is positive.- returns
a
Passif the specifiedLongvalue is positive, else aFailcontaining an error value produced by passing the specifiedLongto the given functionf.
-
def
rightOrElse[L](value: Long)(f: (Long) ⇒ L): Either[L, PosLong]
A factory/validation method that produces a
PosLong, 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
PosLong, 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 positiveInt, it will return aPosLongrepresenting that value, wrapped in aRight. Otherwise, the passedIntvalue is not positive, 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 positive, return wrapped in aRight(PosLong).- returns
the specified
Intvalue wrapped in aRight(PosLong), if it is positive, else aLeft(f(value)).
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
tryingValid(value: Long): Try[PosLong]
A factory/validation method that produces a
PosLong, wrapped in aSuccess, given a validLongvalue, or if the givenLongis invalid, anAssertionError, wrapped in aFailure.A factory/validation method that produces a
PosLong, wrapped in aSuccess, given a validLongvalue, or if the givenLongis invalid, anAssertionError, wrapped in aFailure.This method will inspect the passed
Longvalue and if it is a positiveLong, it will return aPosLongrepresenting that value, wrapped in aSuccess. Otherwise, the passedLongvalue is not positive, so this method will return anAssertionError, wrapped in aFailure.This factory method differs from the
applyfactory method in thatapplyis implemented via a macro that inspectsLongliterals at compile time, whereas this method inspectsLongvalues at run time.- value
the
Longto inspect, and if positive, return wrapped in aSuccess(PosLong).- returns
the specified
Longvalue wrapped in aSuccess(PosLong), if it is positive, 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: 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
widenToNonZeroDouble(pos: PosLong): NonZeroDouble
Implicit widening conversion from
PosLongtoNonZeroDouble.Implicit widening conversion from
PosLongtoNonZeroDouble.- pos
the
PosLongto widen- returns
the
Longvalue underlying the specifiedPosLong, widened toDoubleand wrapped in aNonZeroDouble.
-
implicit
def
widenToNonZeroFloat(pos: PosLong): NonZeroFloat
Implicit widening conversion from
PosLongtoNonZeroFloat.Implicit widening conversion from
PosLongtoNonZeroFloat.- pos
the
PosLongto widen- returns
the
Longvalue underlying the specifiedPosLong, widened toFloatand wrapped in aNonZeroFloat.
-
implicit
def
widenToNonZeroLong(pos: PosLong): NonZeroLong
Implicit widening conversion from
PosLongtoNonZeroLong.Implicit widening conversion from
PosLongtoNonZeroLong.- pos
the
PosLongto widen- returns
the
Longvalue underlying the specifiedPosLong, widened toLongand wrapped in aNonZeroLong.
-
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 specifiedPosLong, widened toLongand wrapped in aPosZLong.