object Enable extends Stream.Enable

Ordering
  1. Alphabetic
Inherited
  1. Enable
  2. Enable
  3. scala.AnyRef
  4. scala.Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type

  1. type ~[+A] = Stream.Interface[A]

    Stream interface type alias

    Stream interface type alias

    Imports tilde as shortcut to Stream.Interface

    Note. ~ is type alias, and ~~ is object alias

    Definition Classes
    Enable

Constant

  1. val ~~: Stream.Interface.type

    Stream interface object alias

    Stream interface object alias

    Imports double tilde as shortcut to Stream.Interface$

    Note. ~ is type alias, and ~~ is object alias

    Definition Classes
    Enable

Method

  1. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  2. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  3. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  4. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  6. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  7. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  8. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. final def notify(): Unit
    Definition Classes
    AnyRef
  10. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  11. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  12. def toString(): String
    Definition Classes
    AnyRef → Any
  13. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Operator

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any

Implicit

  1. implicit def zzStream_Array[A](v: Array[A]): ~[A] with Util.Able.Stream[A]

    Array to Stream

    Array to Stream

    Globally provides implicit conversion from Array to Stream

    Definition Classes
    Enable
    Annotations
    @inline()
  2. implicit def zzStream_Java_Iterable[A](v: Iterable[A])(implicit arg0: Tag[A]): ~[A] with Util.Able.Stream[A]

    Java Iterable to Stream

    Java Iterable to Stream

    Globally provides implicit conversion from java.lang.Iterable to Stream

    Definition Classes
    Enable
    Annotations
    @inline()
  3. implicit def zzStream_Java_Iterator[A](v: Iterator[A])(implicit arg0: Tag[A]): ~[A] with Util.Able.Stream[A]

    Java Iterator to Stream

    Java Iterator to Stream

    Globally provides implicit conversion from java.util.Iterator to Stream

    Definition Classes
    Enable
    Annotations
    @inline()
  4. implicit def zzStream_Scala_IterableOnce[A](v: GenTraversableOnce[A])(implicit arg0: Tag[A]): ~[A] with Util.Able.Stream[A]

    IterableOnce to Stream

    IterableOnce to Stream

    Globally provides implicit conversion from scala.collection.IterableOnce to Stream

    Definition Classes
    Enable
    Annotations
    @inline()
Linear Supertypes
Stream.Enable, AnyRef, Any
Source: Enable.scala