final class Reusable[+A] extends AnyRef

A value that has been explicitly paired with a (potentially ad-hoc) Reusability instance.

A

The type of value.

Since

1.0.0

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Reusable
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def *>[B](fb: Reusable[B]): Reusable[B]

    Combine reusability of this and the argument, and return the value of the argument.

  4. def <*[B](fb: Reusable[B]): Reusable[A]

    Combine reusability of this and the argument, and return the value of this.

  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def ap[B](rf: Reusable[(A) => B]): Reusable[B]

    Create a new Reusable[B] that is reusable so long as this Reusable[A] and the Reusable[A => B] are.

  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. def hashCode(): Int
    Definition Classes
    Reusable → AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. val isReusable: (Reusable[Any]) => Boolean
  15. def map[B](f: (A) => B): Reusable[B]

    WARNING: This does not affect reusability.

    WARNING: This does not affect reusability. Only the initial (pre-mapped) values matter when considering reusability.

    If you have two reusable values and map them differently, even though the mapped values differ they will still be considered reusable. Any differences as a result of second the mapping will be discarded.

  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String
    Definition Classes
    Reusable → AnyRef → Any
  21. def tuple[B](rb: Reusable[B]): Reusable[(A, B)]

    Create a Reusable[(A, B)] that is reusable so long as this Reusable[A] and the Reusable[B] are.

  22. def value: A
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. def withLazyValue[B](b: => B): Reusable[B]
  27. def withValue[B](b: B): Reusable[B]

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped