Packages

implicit final class IntOps extends AnyVal

Extension methods for Int.

Source
ops.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IntOps
  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 IntOps(value: Int)

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 IntOps to any2stringadd[IntOps] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (IntOps, B)
    Implicit
    This member is added by an implicit conversion from IntOps to ArrowAssoc[IntOps] 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: (IntOps) ⇒ Boolean, msg: ⇒ Any): IntOps
    Implicit
    This member is added by an implicit conversion from IntOps to Ensuring[IntOps] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  8. def ensuring(cond: (IntOps) ⇒ Boolean): IntOps
    Implicit
    This member is added by an implicit conversion from IntOps to Ensuring[IntOps] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: Boolean, msg: ⇒ Any): IntOps
    Implicit
    This member is added by an implicit conversion from IntOps to Ensuring[IntOps] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean): IntOps
    Implicit
    This member is added by an implicit conversion from IntOps to Ensuring[IntOps] 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 IntOps to StringFormat[IntOps] 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 ordinalize: String

    Turns a non-negative number into an ordinal string used to denote the position in an ordered sequence, such as 1st, 2nd, 3rd, 4th.

    Turns a non-negative number into an ordinal string used to denote the position in an ordered sequence, such as 1st, 2nd, 3rd, 4th.

    returns

    the string with the number and ordinal suffix

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

Shadowed Implicit Value Members

  1. def future: Future[IntOps]

    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 IntOps to AnyOps[IntOps] 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:
    (intOps: AnyOps[IntOps]).future
    Definition Classes
    AnyOps
    Annotations
    @inline()
  2. def future: Future[IntOps]

    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 IntOps to AnyOps[IntOps] 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:
    (intOps: AnyOps[IntOps]).future
    Definition Classes
    AnyOps
    Annotations
    @inline()
  3. def option: Option[IntOps]

    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 IntOps to AnyOps[IntOps] 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:
    (intOps: AnyOps[IntOps]).option
    Definition Classes
    AnyOps
    Annotations
    @inline()
  4. def option: Option[IntOps]

    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 IntOps to AnyOps[IntOps] 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:
    (intOps: AnyOps[IntOps]).option
    Definition Classes
    AnyOps
    Annotations
    @inline()
  5. def tap(f: (IntOps) ⇒ Unit): IntOps

    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 IntOps to AnyOps[IntOps] 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:
    (intOps: AnyOps[IntOps]).tap(f)
    Definition Classes
    AnyOps
  6. def tap(f: (IntOps) ⇒ Unit): IntOps

    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 IntOps to AnyOps[IntOps] 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:
    (intOps: AnyOps[IntOps]).tap(f)
    Definition Classes
    AnyOps

Inherited from AnyVal

Inherited from Any

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

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

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

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

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

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

Ungrouped