p
scalqa

Stream.Interface

package Interface

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

Type Constructor

  1. def apply[A](v: A*): ~[A]

    Varagr Constructor

    Varagr Constructor

    Creates stream with specified values

    Definition Classes
    Interface
  2. def down(from: Double, step: Double): ~[Double]

    Decreasing value Stream

    Decreasing value Stream

    Creates a stream of all values from specified to mimimum with specified step

    Definition Classes
    Interface
  3. def down(from: Float, step: Float): ~[Float]

    Decreasing value Stream

    Decreasing value Stream

    Creates a stream of all values from specified to mimimum with specified step

    Definition Classes
    Interface
  4. def down(from: Long, step: Long): ~[Long]

    Decreasing value Stream

    Decreasing value Stream

    Creates a stream of all values from specified to mimimum with specified step

    Definition Classes
    Interface
  5. def down(from: Long): ~[Long]

    Decreasing value Stream

    Decreasing value Stream

    Creates a stream of all values from specified to mimimum

    Definition Classes
    Interface
  6. def down(from: Int, step: Int): ~[Int]

    Decreasing value Stream

    Decreasing value Stream

    Creates a stream of all values from specified to mimimum with specified step

    Definition Classes
    Interface
  7. def down(from: Int): ~[Int]

    Decreasing value Stream

    Decreasing value Stream

    Creates a stream of all values from specified to mimimum

    Definition Classes
    Interface
  8. def down(from: Char, step: Int): ~[Char]

    Decreasing value Stream

    Decreasing value Stream

    Creates a stream of all values from specified to mimimum with specified step

    Definition Classes
    Interface
  9. def down(from: Char): ~[Char]

    Decreasing value Stream

    Decreasing value Stream

    Creates a stream of all values from specified to mimimum

    Definition Classes
    Interface
  10. def down(from: Short, step: Int): ~[Short]

    Decreasing value Stream

    Decreasing value Stream

    Creates a stream of all values from specified to mimimum with specified step

    Definition Classes
    Interface
  11. def down(from: Short): ~[Short]

    Decreasing value Stream

    Decreasing value Stream

    Creates a stream of all values from specified to mimimum

    Definition Classes
    Interface
  12. def down(from: Byte, step: Int): ~[Byte]

    Decreasing value Stream

    Decreasing value Stream

    Creates a stream of all values from specified to mimimum with specified step

    Definition Classes
    Interface
  13. def down(from: Byte): ~[Byte]

    Decreasing value Stream

    Decreasing value Stream

    Creates a stream of all values from specified to mimimum

    Definition Classes
    Interface
  14. def range(from: Int, size: Int): ~[Int]

    Int range stream

    Int range stream

    Creates a Stream of Ints

    Definition Classes
    Interface
  15. def single[A](v: A): ~[A]

    Single value stream

    Single value stream

    Creates a Stream with specified single value

    Definition Classes
    Interface
  16. def up(from: Double, step: Double): ~[Double]

    Increasing value Stream

    Increasing value Stream

    Creates a stream of all values from specified to maximum with specified step

    Definition Classes
    Interface
  17. def up(from: Float, step: Float): ~[Float]

    Increasing value Stream

    Increasing value Stream

    Creates a stream of all values from specified to maximum with specified step

    Definition Classes
    Interface
  18. def up(from: Long, step: Long): ~[Long]

    Increasing value Stream

    Increasing value Stream

    Creates a stream of all values from specified to maximum with specified step

    Definition Classes
    Interface
  19. def up(from: Long): ~[Long]

    Increasing value Stream

    Increasing value Stream

    Creates a stream of all values from specified to maximum

    Definition Classes
    Interface
  20. def up(from: Int, step: Int): ~[Int]

    Increasing value Stream

    Increasing value Stream

    Creates a stream of all values from specified to maximum with specified step

    Definition Classes
    Interface
  21. def up(from: Int): ~[Int]

    Increasing value Stream

    Increasing value Stream

    Creates a stream of all values from specified to maximum

    Definition Classes
    Interface
  22. def up(from: Char, step: Int): ~[Char]

    Increasing value Stream

    Increasing value Stream

    Creates a stream of all values from specified to maximum with specified step

    Definition Classes
    Interface
  23. def up(from: Char): ~[Char]

    Increasing value Stream

    Increasing value Stream

    Creates a stream of all values from specified to maximum

    Definition Classes
    Interface
  24. def up(from: Short, step: Int): ~[Short]

    Increasing value Stream

    Increasing value Stream

    Creates a stream of all values from specified to maximum with specified step

    Definition Classes
    Interface
  25. def up(from: Short): ~[Short]

    Increasing value Stream

    Increasing value Stream

    Creates a stream of all values from specified to maximum

    Definition Classes
    Interface
  26. def up(from: Byte, step: Int): ~[Byte]

    Increasing value Stream

    Increasing value Stream

    Creates a stream of all values from specified to maximum with specified step

    Definition Classes
    Interface
  27. def up(from: Byte): ~[Byte]

    Increasing value Stream

    Increasing value Stream

    Creates a stream of all values from specified to maximum

    Definition Classes
    Interface

Implicit Constructor

  1. implicit def zzMake[A](v: \/): Interface[A]

    Get void

    Get void

    Implicitly converts void request to void instance of this type

    // Generic examples
    
    val s: ~[String] = \/
    
    val o: Opt[Int]  = \/
    Definition Classes
    WithType

Implicit

  1. implicit def zzStream[A](v: ~[A]): Stream[A]
    Definition Classes
    _Class
    Annotations
    @inline()
Linear Supertypes
AnyRef, Any
Source: package.scala