Package

axle

Permalink

package axle

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

Type Members

  1. case class Combinations[E](pool: IndexedSeq[E], r: Int)(implicit evidence$1: Manifest[E]) extends Iterable[IndexedSeq[E]] with Product with Serializable

    Permalink
  2. case class CombinationsFast[E](pool: IndexedSeq[E], r: Int)(implicit evidence$1: Manifest[E]) extends Iterable[IndexedSeq[E]] with Product with Serializable

    Permalink
  3. case class CrossProduct[E](collections: IndexedSeq[IndexedSeq[E]]) extends Iterable[List[E]] with Product with Serializable

    Permalink
  4. case class EnrichedArray[T](arr: Array[T])(implicit evidence$1: Manifest[T]) extends Product with Serializable

    Permalink
  5. case class EnrichedByteArray(barr: Array[Byte]) extends Product with Serializable

    Permalink
  6. case class EnrichedGenSeq[T](genSeq: GenSeq[T]) extends Product with Serializable

    Permalink
  7. case class EnrichedGenTraversable[+T](gt: GenTraversable[T])(implicit evidence$1: Manifest[T]) extends Product with Serializable

    Permalink
  8. case class EnrichedIndexedSeq[T](is: IndexedSeq[T])(implicit evidence$1: Manifest[T]) extends Product with Serializable

    Permalink
  9. case class EnrichedInt(n: Int) extends Product with Serializable

    Permalink
  10. class EnrichedIterator[T] extends AnyRef

    Permalink
  11. case class EnrichedMutableBuffer[T](buffer: Buffer[T]) extends Product with Serializable

    Permalink
  12. trait HtmlFrom[T] extends AnyRef

    Permalink
    Annotations
    @implicitNotFound( ... )
  13. case class IndexedCrossProduct[E](lists: Seq[IndexedSeq[E]]) extends Iterable[Seq[E]] with Product with Serializable

    Permalink
  14. case class IndexedPowerSet[E](all: IndexedSeq[E]) extends Iterable[Set[E]] with Product with Serializable

    Permalink

    A ℘ (IndexedPowerSet) constructed with a collection with elements of type E can construct an Iterator which enumerates all possible subsets (of type Collection<E>) of the collection used to construct the PowerSet.

  15. case class Permutations[E](pool: IndexedSeq[E], r: Int)(implicit evidence$1: Manifest[E]) extends Iterable[IndexedSeq[E]] with Product with Serializable

    Permalink

    Based on Python's itertools.permutations function

    Based on Python's itertools.permutations function

    http://docs.python.org/library/itertools.html#itertools.permutations

    Permutations("ABCD".toIndexedSeq, 2) Permutations(0 until 3)

  16. case class PermutationsFast[E](pool: IndexedSeq[E], r: Int)(implicit evidence$1: Manifest[E]) extends Iterable[IndexedSeq[E]] with Product with Serializable

    Permalink

Value Members

  1. object HtmlFrom

    Permalink
  2. package algebra

    Permalink
  3. def applyForever[N](f: (N) ⇒ N, x0: N): Iterator[N]

    Permalink
  4. def applyK[N](f: (N) ⇒ N, x0: N, k: Int): N

    Permalink
  5. package ast

    Permalink
  6. implicit def enrichArray[T](arr: Array[T])(implicit arg0: Manifest[T]): EnrichedArray[T]

    Permalink
  7. implicit def enrichByteArray(barr: Array[Byte]): EnrichedByteArray

    Permalink
  8. implicit def enrichGenSeq[T](genSeq: GenSeq[T]): EnrichedGenSeq[T]

    Permalink
  9. implicit def enrichGenTraversable[T](gt: GenTraversable[T])(implicit arg0: Manifest[T]): EnrichedGenTraversable[T]

    Permalink
  10. implicit def enrichIndexedSeq[T](is: IndexedSeq[T])(implicit arg0: Manifest[T]): EnrichedIndexedSeq[T]

    Permalink
  11. implicit def enrichInt(n: Int): EnrichedInt

    Permalink
  12. implicit def enrichIterator[T](it: Iterator[T]): EnrichedIterator[T]

    Permalink
  13. implicit def enrichMutableBuffer[T](buffer: Buffer[T]): EnrichedMutableBuffer[T]

    Permalink
  14. implicit def eqIterable[T](implicit eqT: Eq[T]): Eq[Iterable[T]]

    Permalink
  15. implicit def eqSeq[T](implicit eqT: Eq[T]): Eq[Seq[T]]

    Permalink
  16. implicit def eqTreeMap[K, V](implicit eqK: Eq[K], eqV: Eq[V]): Eq[TreeMap[K, V]]

    Permalink
  17. def filterOut[T](stream: Stream[T], toRemove: Stream[T])(implicit orderT: Order[T]): Stream[T]

    Permalink
  18. object forall

    Permalink
  19. package game

    Permalink
  20. def gaps[T](xs: Seq[T])(implicit ringT: Ring[T]): Seq[(T, T)]

    Permalink

    gaps

    gaps

    assumes that the input xs are already sorted

  21. def getLine(): String

    Permalink
  22. def html[T](t: T)(implicit arg0: HtmlFrom[T]): Node

    Permalink
  23. def id[A](x: A): A

    Permalink
  24. def ignore[T]: (T) ⇒ Unit

    Permalink
  25. def intersperse[T](d: T)(l: List[T]): List[T]

    Permalink
  26. package logic

    Permalink
  27. def mergeStreams[T](streams: Seq[Stream[T]])(implicit eqT: Eq[T], orderT: Order[T]): Stream[T]

    Permalink

    mergeStreams takes streams that are ordered w.r.t.

    mergeStreams takes streams that are ordered w.r.t. Order[T]

  28. def orbit[N](f: (N) ⇒ N, x0: N, close: (N) ⇒ (N) ⇒ Boolean): List[N]

    Permalink
  29. def prefixedDisplay(prefix: String)(display: (String) ⇒ Unit): (String) ⇒ Unit

    Permalink
  30. def print[T](t: T)(implicit arg0: Show[T]): Unit

    Permalink
  31. package quanta

    Permalink
  32. def replicate[T](n: Int)(v: T): List[T]

    Permalink
  33. def reverse[T](l: List[T]): List[T]

    Permalink
  34. def runs[T](xs: Seq[T])(implicit ringT: Ring[T], orderT: Order[T]): Seq[(T, T)]

    Permalink

    runs

    runs

    assumes xs is already sorted

  35. def runs[T](xs: Seq[T], breaks: Set[T]): Seq[(T, T)]

    Permalink
  36. def show[T](t: T)(implicit arg0: Show[T]): String

    Permalink
  37. def showDoubleWithPrecision(p: Int = 6): Show[Double]

    Permalink
  38. implicit val showNode: Show[Node]

    Permalink
  39. implicit val showRational: Show[Rational]

    Permalink
  40. package stats

    Permalink
  41. def streamFrom[N](n: N)(implicit orderN: Order[N], ringN: Ring[N]): Stream[N]

    Permalink
  42. def string[T](t: T)(implicit arg0: Show[T]): String

    Permalink
  43. package syntax

    Permalink
  44. object thereexists

    Permalink
  45. def trace[N](f: (N) ⇒ N, x0: N): Iterator[(N, Set[N])]

    Permalink
  46. object

    Permalink
  47. val : forall.type

    Permalink
  48. val : thereexists.type

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped