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.
Attributes
- Companion
- class
- Source
- PosLong.scala
- Graph
-
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
PosLong.type
Members list
Value members
Concrete methods
A factory/assertion method that produces an PosLong given a valid Long value, or throws AssertionError, if given an invalid Long value.
A factory/assertion method that produces an PosLong given a valid Long value, or throws AssertionError, if given an invalid Long 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, or rightOrElse.
This method will inspect the passed Long value and if it is a positive Long, it will return a PosLong representing that value. Otherwise, the passed Long value is not positive, so this method will throw AssertionError.
This factory method differs from the apply factory method in that apply is implemented via a macro that inspects Long literals at compile time, whereas from inspects Long values at run time. It differs from a vanilla assert or ensuring call in that you get something you didn't already have if the assertion succeeds: a type that promises a Long is positive.
Value parameters
- value
-
the
Longto inspect, and if positive, return wrapped in aPosLong.
Attributes
- Returns
-
the specified
Longvalue wrapped in aPosLong, if it is positive, else throwsAssertionError. - Throws
-
AssertionError
if the passed value is not positive
- Source
- PosLong.scala
A factory method that produces an Option[PosLong] given a Long value.
A factory method that produces an Option[PosLong] given a Long value.
This method will inspect the passed Long value and if it is a positive Long, it will return a PosLong representing that value, wrapped in a Some. Otherwise, the passed Long value is not positive, so this method will return None.
This factory method differs from the apply factory method in that apply is implemented via a macro that inspects Long literals at compile time, whereas from inspects Long values at run time.
Value parameters
- value
-
the
Longto inspect, and if positive, return wrapped in aSome[PosLong].
Attributes
- Returns
-
the specified
Longvalue wrapped in aSome[PosLong], if it is positive, elseNone. - Source
- PosLong.scala
A factory method that produces a PosLong given a Long value and a default PosLong.
A factory method that produces a PosLong given a Long value and a default PosLong.
This method will inspect the passed Long value and if it is a positive Long, it will return a PosLong representing that value. Otherwise, the passed Long value is not positive, so this method will return the passed default value.
This factory method differs from the apply factory method in that apply is implemented via a macro that inspects Long literals at compile time, whereas from inspects Long values at run time.
Value parameters
- default
-
the
PosLongto return if the passedLongvalue is not positive. - value
-
the
Longto inspect, and if positive, return.
Attributes
- Returns
-
the specified
Longvalue wrapped in aPosLong, if it is positive, else thedefaultPosLongvalue. - Source
- PosLong.scala
A factory/validation method that produces a PosLong, wrapped in a Good, given a valid Long value, or if the given Long is invalid, an error value of type B produced by passing the given invalid Long value to the given function f, wrapped in a Bad.
A factory/validation method that produces a PosLong, wrapped in a Good, given a valid Long value, or if the given Long is invalid, an error value of type B produced by passing the given invalid Long value to the given function f, wrapped in a Bad.
This method will inspect the passed Long value and if it is a positive Long, it will return a PosLong representing that value, wrapped in a Good. Otherwise, the passed Long value is not positive, so this method will return a result of type B obtained by passing the invalid Long value to the given function f, wrapped in a Bad.
This factory method differs from the apply factory method in that apply is implemented via a macro that inspects Long literals at compile time, whereas this method inspects Long values at run time.
Value parameters
- value
-
the
Longto inspect, and if positive, return wrapped in aGood(PosLong).
Attributes
- Returns
-
the specified
Longvalue wrapped in aGood(PosLong), if it is positive, else aBad(f(value)). - Source
- PosLong.scala
A predicate method that returns true if a given Long value is positive.
A predicate method that returns true if a given Long value is positive.
Value parameters
- value
-
the
Longto inspect, and if positive, return true.
Attributes
- Returns
-
true if the specified
Longis positive, else false. - Source
- PosLong.scala
A validation method that produces a Pass given a valid Long value, or an error value of type E produced by passing the given invalid Int value to the given function f, wrapped in a Fail.
A validation method that produces a Pass given a valid Long value, or an error value of type E produced by passing the given invalid Int value to the given function f, wrapped in a Fail.
This method will inspect the passed Long value and if it is a positive Long, it will return a Pass. Otherwise, the passed Long value is positive, so this method will return a result of type E obtained by passing the invalid Long value to the given function f, wrapped in a Fail.
This factory method differs from the apply factory method in that apply is implemented via a macro that inspects Long literals at compile time, whereas this method inspects Long values at run time.
Value parameters
- value
-
the
Longto validate that it is positive.
Attributes
- Returns
-
a
Passif the specifiedLongvalue is positive, else aFailcontaining an error value produced by passing the specifiedLongto the given functionf. - Source
- PosLong.scala
A factory/validation method that produces a PosLong, wrapped in a Right, given a valid Int value, or if the given Int is invalid, an error value of type L produced by passing the given invalid Int value to the given function f, wrapped in a Left.
A factory/validation method that produces a PosLong, wrapped in a Right, given a valid Int value, or if the given Int is invalid, an error value of type L produced by passing the given invalid Int value to the given function f, wrapped in a Left.
This method will inspect the passed Int value and if it is a positive Int, it will return a PosLong representing that value, wrapped in a Right. Otherwise, the passed Int value is not positive, so this method will return a result of type L obtained by passing the invalid Int value to the given function f, wrapped in a Left.
This factory method differs from the apply factory method in that apply is implemented via a macro that inspects Int literals at compile time, whereas this method inspects Int values at run time.
Value parameters
- value
-
the
Intto inspect, and if positive, return wrapped in aRight(PosLong).
Attributes
- Returns
-
the specified
Intvalue wrapped in aRight(PosLong), if it is positive, else aLeft(f(value)). - Source
- PosLong.scala
A factory/validation method that produces a PosLong, wrapped in a Success, given a valid Long value, or if the given Long is invalid, an AssertionError, wrapped in a Failure.
A factory/validation method that produces a PosLong, wrapped in a Success, given a valid Long value, or if the given Long is invalid, an AssertionError, wrapped in a Failure.
This method will inspect the passed Long value and if it is a positive Long, it will return a PosLong representing that value, wrapped in a Success. Otherwise, the passed Long value is not positive, so this method will return an AssertionError, wrapped in a Failure.
This factory method differs from the apply factory method in that apply is implemented via a macro that inspects Long literals at compile time, whereas this method inspects Long values at run time.
Value parameters
- value
-
the
Longto inspect, and if positive, return wrapped in aSuccess(PosLong).
Attributes
- Returns
-
the specified
Longvalue wrapped in aSuccess(PosLong), if it is positive, else aFailure(AssertionError). - Source
- PosLong.scala
Concrete fields
The largest value representable as a positive Long, which is PosLong(9223372036854775807).
The largest value representable as a positive Long, which is PosLong(9223372036854775807).
Attributes
- Source
- PosLong.scala
The smallest value representable as a positive Long, which is PosLong(1L).
The smallest value representable as a positive Long, which is PosLong(1L).
Attributes
- Source
- PosLong.scala
Deprecated fields
The formerly implicit posLongOrd field has been deprecated and will be removed in a future version of ScalaTest. Please use the ordering field instead.
The formerly implicit posLongOrd field has been deprecated and will be removed in a future version of ScalaTest. Please use the ordering field instead.
Attributes
- Deprecated
- true
- Source
- PosLong.scala
Implicits
Implicits
A factory method, implemented via a macro, that produces a PosLong if passed a valid Long literal, otherwise a compile time error.
A factory method, implemented via a macro, that produces a PosLong if passed a valid Long literal, otherwise a compile time error.
The macro that implements this method will inspect the specified Long expression at compile time. If the expression is a positive Long literal, it will return a PosLong representing that value. Otherwise, the passed Long expression 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 from factory method in that this method is implemented via a macro that inspects Long literals at compile time, whereas from inspects Long values at run time.
Value parameters
- value
-
the
Longliteral expression to inspect at compile time, and if positive, to return wrapped in aPosLongat run time.
Attributes
- 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.) - Source
- PosLong.scala
Implicit Ordering instance.
Implicit widening conversion from PosLong to Double.
Implicit widening conversion from PosLong to Double.
Value parameters
- pos
-
the
PosLongto widen
Attributes
- Returns
-
the
Longvalue underlying the specifiedPosLong, widened toDouble. - Source
- PosLong.scala
Implicit widening conversion from PosLong to Float.
Implicit widening conversion from PosLong to Float.
Value parameters
- pos
-
the
PosLongto widen
Attributes
- Returns
-
the
Longvalue underlying the specifiedPosLong, widened toFloat. - Source
- PosLong.scala
Implicit widening conversion from PosLong to Long.
Implicit widening conversion from PosLong to Long.
Value parameters
- pos
-
the
PosLongto widen
Attributes
- Returns
-
the
Longvalue underlying the specifiedPosLong. - Source
- PosLong.scala
Implicit widening conversion from PosLong to NonZeroDouble.
Implicit widening conversion from PosLong to NonZeroDouble.
Value parameters
- pos
-
the
PosLongto widen
Attributes
- Returns
-
the
Longvalue underlying the specifiedPosLong, widened toDoubleand wrapped in aNonZeroDouble. - Source
- PosLong.scala
Implicit widening conversion from PosLong to NonZeroFloat.
Implicit widening conversion from PosLong to NonZeroFloat.
Value parameters
- pos
-
the
PosLongto widen
Attributes
- Returns
-
the
Longvalue underlying the specifiedPosLong, widened toFloatand wrapped in aNonZeroFloat. - Source
- PosLong.scala
Implicit widening conversion from PosLong to NonZeroLong.
Implicit widening conversion from PosLong to NonZeroLong.
Value parameters
- pos
-
the
PosLongto widen
Attributes
- Returns
-
the
Longvalue underlying the specifiedPosLong, widened toLongand wrapped in aNonZeroLong. - Source
- PosLong.scala
Implicit widening conversion from PosLong to PosDouble.
Implicit widening conversion from PosLong to PosDouble.
Value parameters
- pos
-
the
PosLongto widen
Attributes
- Returns
-
the
Longvalue underlying the specifiedPosLong, widened toDoubleand wrapped in aPosDouble. - Source
- PosLong.scala
Implicit widening conversion from PosLong to PosFloat.
Implicit widening conversion from PosLong to PosFloat.
Value parameters
- pos
-
the
PosLongto widen
Attributes
- Returns
-
the
Longvalue underlying the specifiedPosLong, widened toFloatand wrapped in aPosFloat. - Source
- PosLong.scala
Implicit widening conversion from PosLong to PosZDouble.
Implicit widening conversion from PosLong to PosZDouble.
Value parameters
- pos
-
the
PosLongto widen
Attributes
- Returns
-
the
Longvalue underlying the specifiedPosLong, widened toDoubleand wrapped in aPosZDouble. - Source
- PosLong.scala
Implicit widening conversion from PosLong to PosZFloat.
Implicit widening conversion from PosLong to PosZFloat.
Value parameters
- pos
-
the
PosLongto widen
Attributes
- Returns
-
the
Longvalue underlying the specifiedPosLong, widened toFloatand wrapped in aPosZFloat. - Source
- PosLong.scala
Implicit widening conversion from PosLong to PosZLong.
Implicit widening conversion from PosLong to PosZLong.
Value parameters
- pos
-
the
PosLongto widen
Attributes
- Returns
-
the
Longvalue underlying the specifiedPosLong, widened toLongand wrapped in aPosZLong. - Source
- PosLong.scala