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. def filterOut[T](stream: Stream[T], toRemove: Stream[T])(implicit orderT: Order[T]): Stream[T]

    Permalink
  15. object forall

    Permalink
  16. package game

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

    Permalink

    gaps

    gaps

    assumes that the input xs are already sorted

  18. def getLine(): String

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

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

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

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

    Permalink
  23. package logic

    Permalink
  24. 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]

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

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

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

    Permalink
  28. package quanta

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

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

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

    Permalink

    runs

    runs

    assumes xs is already sorted

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

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

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

    Permalink
  35. implicit val showNode: Show[Node]

    Permalink
  36. implicit val showRational: Show[Rational]

    Permalink
  37. package stats

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

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

    Permalink
  40. package syntax

    Permalink
  41. object thereexists

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

    Permalink
  43. object

    Permalink
  44. val : forall.type

    Permalink
  45. val : thereexists.type

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped