Packages

c

scail.commons.ops

ShortOps

implicit final class ShortOps extends AnyVal

Extension methods for Short.

Source
ops.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ShortOps
  2. AnyVal
  3. Any
Implicitly
  1. by AnyOps
  2. by AnyOps
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ShortOps(value: Short)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ShortOps to any2stringadd[ShortOps] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ShortOps, B)
    Implicit
    This member is added by an implicit conversion from ShortOps to ArrowAssoc[ShortOps] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def ensuring(cond: (ShortOps) ⇒ Boolean, msg: ⇒ Any): ShortOps
    Implicit
    This member is added by an implicit conversion from ShortOps to Ensuring[ShortOps] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  8. def ensuring(cond: (ShortOps) ⇒ Boolean): ShortOps
    Implicit
    This member is added by an implicit conversion from ShortOps to Ensuring[ShortOps] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: Boolean, msg: ⇒ Any): ShortOps
    Implicit
    This member is added by an implicit conversion from ShortOps to Ensuring[ShortOps] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean): ShortOps
    Implicit
    This member is added by an implicit conversion from ShortOps to Ensuring[ShortOps] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ShortOps to StringFormat[ShortOps] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  12. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  13. def isEven: Boolean

    Whether value is even.

    Whether value is even.

    returns

    true if value is even, false otherwise

    Annotations
    @inline()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def isOdd: Boolean

    Whether value is odd.

    Whether value is odd.

    returns

    true if value is odd, false otherwise

    Annotations
    @inline()
  16. def toString(): String
    Definition Classes
    Any
  17. def [B](y: B): (ShortOps, B)
    Implicit
    This member is added by an implicit conversion from ShortOps to ArrowAssoc[ShortOps] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def future: Future[ShortOps]

    Creates an already completed Future containing value.

    Creates an already completed Future containing value.

    returns

    the already completed Future with the specified result

    Implicit
    This member is added by an implicit conversion from ShortOps to AnyOps[ShortOps] performed by method AnyOps in scail.commons.ops.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (shortOps: AnyOps[ShortOps]).future
    Definition Classes
    AnyOps
    Annotations
    @inline()
  2. def future: Future[ShortOps]

    Creates an already completed Future containing value.

    Creates an already completed Future containing value.

    returns

    the already completed Future with the specified result

    Implicit
    This member is added by an implicit conversion from ShortOps to AnyOps[ShortOps] performed by method AnyOps in scail.commons.ops.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (shortOps: AnyOps[ShortOps]).future
    Definition Classes
    AnyOps
    Annotations
    @inline()
  3. def option: Option[ShortOps]

    Creates an Option containing value.

    Creates an Option containing value.

    returns

    Some(value) if value is not null, None otherwise

    Implicit
    This member is added by an implicit conversion from ShortOps to AnyOps[ShortOps] performed by method AnyOps in scail.commons.ops.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (shortOps: AnyOps[ShortOps]).option
    Definition Classes
    AnyOps
    Annotations
    @inline()
  4. def option: Option[ShortOps]

    Creates an Option containing value.

    Creates an Option containing value.

    returns

    Some(value) if value is not null, None otherwise

    Implicit
    This member is added by an implicit conversion from ShortOps to AnyOps[ShortOps] performed by method AnyOps in scail.commons.ops.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (shortOps: AnyOps[ShortOps]).option
    Definition Classes
    AnyOps
    Annotations
    @inline()
  5. def tap(f: (ShortOps) ⇒ Unit): ShortOps

    Applies side-effectul method to value, returning value.

    Applies side-effectul method to value, returning value.

    f

    the side-effectful method to apply to value

    returns

    value

    Implicit
    This member is added by an implicit conversion from ShortOps to AnyOps[ShortOps] performed by method AnyOps in scail.commons.ops.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (shortOps: AnyOps[ShortOps]).tap(f)
    Definition Classes
    AnyOps
  6. def tap(f: (ShortOps) ⇒ Unit): ShortOps

    Applies side-effectul method to value, returning value.

    Applies side-effectul method to value, returning value.

    f

    the side-effectful method to apply to value

    returns

    value

    Implicit
    This member is added by an implicit conversion from ShortOps to AnyOps[ShortOps] performed by method AnyOps in scail.commons.ops.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (shortOps: AnyOps[ShortOps]).tap(f)
    Definition Classes
    AnyOps

Inherited from AnyVal

Inherited from Any

Inherited by implicit conversion AnyOps from ShortOps to AnyOps[ShortOps]

Inherited by implicit conversion AnyOps from ShortOps to AnyOps[ShortOps]

Inherited by implicit conversion any2stringadd from ShortOps to any2stringadd[ShortOps]

Inherited by implicit conversion StringFormat from ShortOps to StringFormat[ShortOps]

Inherited by implicit conversion Ensuring from ShortOps to Ensuring[ShortOps]

Inherited by implicit conversion ArrowAssoc from ShortOps to ArrowAssoc[ShortOps]

Ungrouped