class ByteOrder extends Order[Byte] with Hash[Byte] with ByteBounded with ByteEnumerable
- Alphabetic
- By Inheritance
- ByteOrder
- ByteEnumerable
- BoundedEnumerable
- PartialNextLowerBounded
- PartialPreviousUpperBounded
- PartialNext
- PartialPrevious
- ByteBounded
- UpperBounded
- LowerBounded
- Hash
- Order
- PartialOrder
- Eq
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new ByteOrder()
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
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @IntrinsicCandidate()
-
def
compare(x: Byte, y: Byte): Int
Result of comparing
x
withy
. -
def
comparison(x: Byte, y: Byte): Comparison
Like
compare
, but returns a cats.kernel.Comparison instead of an Int.Like
compare
, but returns a cats.kernel.Comparison instead of an Int. Has the benefit of being able to pattern match on, but not as performant.- Definition Classes
- Order
-
def
cycleNext(a: Byte): Byte
- Definition Classes
- BoundedEnumerable
-
def
cyclePrevious(a: Byte): Byte
- Definition Classes
- BoundedEnumerable
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
eqv(x: Byte, y: Byte): Boolean
Returns true if
x
=y
, false otherwise.Returns true if
x
=y
, false otherwise.- Definition Classes
- ByteOrder → Order → PartialOrder → Eq
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
-
def
gt(x: Byte, y: Byte): Boolean
Returns true if
x
>y
, false otherwise.Returns true if
x
>y
, false otherwise.- Definition Classes
- ByteOrder → Order → PartialOrder
-
def
gteqv(x: Byte, y: Byte): Boolean
Returns true if
x
>=y
, false otherwise.Returns true if
x
>=y
, false otherwise.- Definition Classes
- ByteOrder → Order → PartialOrder
-
def
hash(x: Byte): Int
Returns the hash code of the given object under this hashing scheme.
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
lt(x: Byte, y: Byte): Boolean
Returns true if
x
<y
, false otherwise.Returns true if
x
<y
, false otherwise.- Definition Classes
- ByteOrder → Order → PartialOrder
-
def
lteqv(x: Byte, y: Byte): Boolean
Returns true if
x
<=y
, false otherwise.Returns true if
x
<=y
, false otherwise.- Definition Classes
- ByteOrder → Order → PartialOrder
-
def
max(x: Byte, y: Byte): Byte
If x > y, return x, else return y.
-
def
maxBound: Byte
Returns the upper limit of a type.
Returns the upper limit of a type.
- Definition Classes
- ByteBounded → UpperBounded
-
def
membersAscending: Stream[Byte]
Enumerate the members in ascending order.
Enumerate the members in ascending order.
- Definition Classes
- PartialNextLowerBounded
-
def
membersDescending: Stream[Byte]
Enumerate the members in descending order.
Enumerate the members in descending order.
- Definition Classes
- PartialPreviousUpperBounded
-
def
min(x: Byte, y: Byte): Byte
If x < y, return x, else return y.
-
def
minBound: Byte
Returns the lower limit of a type.
Returns the lower limit of a type.
- Definition Classes
- ByteBounded → LowerBounded
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
neqv(x: Byte, y: Byte): Boolean
Returns true if
x
!=y
, false otherwise. -
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
-
val
order: Order[Byte]
- Definition Classes
- ByteOrder → BoundedEnumerable
-
def
partialCompare(x: Byte, y: Byte): Double
Result of comparing
x
withy
.Result of comparing
x
withy
. Returns NaN if operands are not comparable. If operands are comparable, returns a Double whose sign is:- negative iff
x < y
- zero iff
x = y
- positive iff
x > y
- Definition Classes
- Order → PartialOrder
- negative iff
-
def
partialComparison(x: Byte, y: Byte): Option[Comparison]
Like
partialCompare
, but returns a cats.kernel.Comparison instead of an Double.Like
partialCompare
, but returns a cats.kernel.Comparison instead of an Double. Has the benefit of being able to pattern match on, but not as performant.- Definition Classes
- PartialOrder
-
def
partialNext(a: Byte): Option[Byte]
- Definition Classes
- ByteEnumerable → PartialNext
-
def
partialOrder: PartialOrder[Byte]
- Definition Classes
- BoundedEnumerable → LowerBounded → UpperBounded → PartialNext → PartialPrevious
-
def
partialPrevious(a: Byte): Option[Byte]
- Definition Classes
- ByteEnumerable → PartialPrevious
-
def
pmax(x: Byte, y: Byte): Option[Byte]
Returns Some(x) if x >= y, Some(y) if x < y, otherwise None.
Returns Some(x) if x >= y, Some(y) if x < y, otherwise None.
- Definition Classes
- PartialOrder
-
def
pmin(x: Byte, y: Byte): Option[Byte]
Returns Some(x) if x <= y, Some(y) if x > y, otherwise None.
Returns Some(x) if x <= y, Some(y) if x > y, otherwise None.
- Definition Classes
- PartialOrder
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toOrdering: Ordering[Byte]
Convert a
Order[A]
to ascala.math.Ordering[A]
instance.Convert a
Order[A]
to ascala.math.Ordering[A]
instance.- Definition Classes
- Order
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
tryCompare(x: Byte, y: Byte): Option[Int]
Result of comparing
x
withy
.Result of comparing
x
withy
. Returns None if operands are not comparable. If operands are comparable, returns Some[Int] where the Int sign is:- negative iff
x < y
- zero iff
x = y
- positive iff
x > y
- Definition Classes
- PartialOrder
- negative iff
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )