object PosZLong
The companion object for PosZLong that offers
factory methods that produce PosZLongs, implicit
widening conversions from PosZLong to other
numeric types, and maximum and minimum constant values for
PosZLong.
- Source
 - PosZLong.scala
 
- Alphabetic
 - By Inheritance
 
- PosZLong
 - 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: PosZLong
The largest value representable as a non-negative
Long, which isPosZLong(9223372036854775807). -   final  val MinValue: PosZLong
The smallest value representable as a positive
Long, which isPosZLong(0L). -   implicit macro  def apply(value: Long): PosZLong
A factory method, implemented via a macro, that produces a
PosZLongif passed a validLongliteral, otherwise a compile time error.A factory method, implemented via a macro, that produces a
PosZLongif 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 non-negativeLongliteral, it will return aPosZLongrepresenting that value. Otherwise, the passedLongexpression is either a literal that is not non-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 non-negative, to return wrapped in aPosZLongat run time.- returns
 the specified, valid
Longliteral value wrapped in aPosZLong. (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()
 
 -    def ensuringValid(value: Long): PosZLong
A factory/assertion method that produces an
PosZLonggiven a validLongvalue, or throwsAssertionError, if given an invalidLongvalue.A factory/assertion method that produces an
PosZLonggiven 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 non-negativeLong, it will return aPosZLongrepresenting that value. Otherwise, the passedLongvalue is not non-negative, 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 non-negative, return wrapped in aPosZLong.- returns
 the specified
Longvalue wrapped in aPosZLong, if it is non-negative, else throwsAssertionError.
- Exceptions thrown
 AssertionErrorif the passed value is not non-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: Long): Option[PosZLong]
A factory method that produces an
Option[PosZLong]given aLongvalue.A factory method that produces an
Option[PosZLong]given aLongvalue.This method will inspect the passed
Longvalue and if it is a non-negativeLong, it will return aPosZLongrepresenting that value, wrapped in aSome. Otherwise, the passedLongvalue is not non-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 non-negative, return wrapped in aSome[PosZLong].- returns
 the specified
Longvalue wrapped in aSome[PosZLong], if it is non-negative, elseNone.
 -    def fromOrElse(value: Long, default: => PosZLong): PosZLong
A factory method that produces a
PosZLonggiven aLongvalue and a defaultPosZLong.A factory method that produces a
PosZLonggiven aLongvalue and a defaultPosZLong.This method will inspect the passed
Longvalue and if it is a non-negativeLong, it will return aPosZLongrepresenting that value. Otherwise, the passedLongvalue is not non-negative, 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 non-negative, return.- default
 the
PosZLongto return if the passedLongvalue is not non-negative.- returns
 the specified
Longvalue wrapped in aPosZLong, if it is non-negative, else thedefaultPosZLongvalue.
 -   final  def getClass(): Class[_ <: AnyRef]
- Definition Classes
 - AnyRef → Any
 - Annotations
 - @native()
 
 -    def goodOrElse[B](value: Long)(f: (Long) => B): Or[PosZLong, B]
A factory/validation method that produces a
PosZLong, 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
PosZLong, 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 non-negativeLong, it will return aPosZLongrepresenting that value, wrapped in aGood. Otherwise, the passedLongvalue is not non-negative, 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 non-negative, return wrapped in aGood(PosZLong).- returns
 the specified
Longvalue wrapped in aGood(PosZLong), if it is non-negative, else aBad(f(value)).
 -    def hashCode(): Int
- Definition Classes
 - AnyRef → Any
 - Annotations
 - @native()
 
 -   final  def isInstanceOf[T0]: Boolean
- Definition Classes
 - Any
 
 -    def isValid(value: Long): Boolean
A predicate method that returns true if a given
Longvalue is non-negative.A predicate method that returns true if a given
Longvalue is non-negative.- value
 the
Longto inspect, and if non-negative, return true.- returns
 true if the specified
Longis non-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[PosZLong]
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 non-negativeLong, it will return aPass. Otherwise, the passedLongvalue is non-negative, 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 non-negative.- returns
 a
Passif the specifiedLongvalue is non-negative, else aFailcontaining an error value produced by passing the specifiedLongto the given functionf.
 -    def rightOrElse[L](value: Long)(f: (Long) => L): Either[L, PosZLong]
A factory/validation method that produces a
PosZLong, 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
PosZLong, 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 non-negativeInt, it will return aPosZLongrepresenting that value, wrapped in aRight. Otherwise, the passedIntvalue is not non-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 non-negative, return wrapped in aRight(PosZLong).- returns
 the specified
Intvalue wrapped in aRight(PosZLong), if it is non-negative, 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[PosZLong]
A factory/validation method that produces a
PosZLong, wrapped in aSuccess, given a validLongvalue, or if the givenLongis invalid, anAssertionError, wrapped in aFailure.A factory/validation method that produces a
PosZLong, 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 non-negativeLong, it will return aPosZLongrepresenting that value, wrapped in aSuccess. Otherwise, the passedLongvalue is not non-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 inspectsLongliterals at compile time, whereas this method inspectsLongvalues at run time.- value
 the
Longto inspect, and if non-negative, return wrapped in aSuccess(PosZLong).- returns
 the specified
Longvalue wrapped in aSuccess(PosZLong), if it is non-negative, else aFailure(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: PosZLong): Double
Implicit widening conversion from
PosZLongtoDouble.Implicit widening conversion from
PosZLongtoDouble.- pos
 the
PosZLongto widen- returns
 the
Longvalue underlying the specifiedPosZLong, widened toDouble.
 -   implicit  def widenToFloat(pos: PosZLong): Float
Implicit widening conversion from
PosZLongtoFloat.Implicit widening conversion from
PosZLongtoFloat.- pos
 the
PosZLongto widen- returns
 the
Longvalue underlying the specifiedPosZLong, widened toFloat.
 -   implicit  def widenToLong(pos: PosZLong): Long
Implicit widening conversion from
PosZLongtoLong.Implicit widening conversion from
PosZLongtoLong.- pos
 the
PosZLongto widen- returns
 the
Longvalue underlying the specifiedPosZLong.
 -   implicit  def widenToPosZDouble(pos: PosZLong): PosZDouble
Implicit widening conversion from
PosZLongtoPosZDouble.Implicit widening conversion from
PosZLongtoPosZDouble.- pos
 the
PosZLongto widen- returns
 the
Longvalue underlying the specifiedPosZLong, widened toDoubleand wrapped in aPosZDouble.
 -   implicit  def widenToPosZFloat(pos: PosZLong): PosZFloat
Implicit widening conversion from
PosZLongtoPosZFloat.Implicit widening conversion from
PosZLongtoPosZFloat.- pos
 the
PosZLongto widen- returns
 the
Longvalue underlying the specifiedPosZLong, widened toFloatand wrapped in aPosZFloat.
 
Deprecated Value Members
-    val posZLongOrd: Ordering[PosZLong]
The formerly implicit
posZLongOrdfield has been deprecated and will be removed in a future version of ScalaTest. Please use theorderingfield instead.The formerly implicit
posZLongOrdfield has been deprecated and will be removed in a future version of ScalaTest. Please use theorderingfield instead.- Annotations
 - @deprecated
 - Deprecated
 The formerly implicit posZLongOrd field has been deprecated and will be removed in a future version of ScalaTest. Please use the ordering field instead.