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. package awt

    Permalink
  7. package bio

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
  20. object forall

    Permalink
  21. package game

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

    Permalink

    gaps

    gaps

    assumes that the input xs are already sorted

  23. def getLine(): String

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

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

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

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

    Permalink
  28. package jogl

    Permalink
  29. package logic

    Permalink
  30. package lx

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

  32. package ml

    Permalink
  33. package nlp

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

    Permalink
  35. package pgm

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

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

    Permalink
  38. package quanta

    Permalink
  39. package reactive

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

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

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

    Permalink

    runs

    runs

    assumes xs is already sorted

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

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

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

    Permalink
  46. implicit val showNode: Show[Node]

    Permalink
  47. implicit val showRational: Show[Rational]

    Permalink
  48. package stats

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

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

    Permalink
  51. package syntax

    Permalink
  52. object thereexists

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

    Permalink
  54. package visualize

    Permalink
  55. package web

    Permalink
  56. object

    Permalink
  57. val : forall.type

    Permalink
  58. val : thereexists.type

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped