Package

axle

Permalink

package axle

See spire.optional.unicode.SymbolicSetOps for ∩ ∪ etc

Linear Supertypes
AnyRef, Any
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. case class EnrichedMutableBuffer[T](buffer: Buffer[T]) extends Product with Serializable

    Permalink
  11. trait HtmlFrom[T] extends AnyRef

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

    Permalink
  13. 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.

  14. trait MapReduce extends AnyRef

    Permalink
  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
  17. trait Show[T] extends AnyRef

    Permalink
    Annotations
    @implicitNotFound( "Witness not found for Show[${T}]" )

Value Members

  1. object HtmlFrom

    Permalink
  2. object ScalaMapReduce extends MapReduce

    Permalink
  3. object Show

    Permalink
  4. def ackermann(m: Long, n: Long): Long

    Permalink

    http://en.wikipedia.org/wiki/Ackermann_function

  5. package algebra

    Permalink
  6. package ast

    Permalink
  7. def cosine[N](a: UnittedQuantity[Angle, N])(implicit arg0: MultiplicativeMonoid[N], arg1: Eq[N], arg2: Trig[N], converter: AngleConverter[N]): N

    Permalink
  8. def distanceOnSphere[N](angle: UnittedQuantity[Angle, N], sphereRadius: UnittedQuantity[Distance, N])(implicit arg0: MultiplicativeMonoid[N], angleConverter: AngleConverter[N], ctn: ConvertableTo[N], angleModule: Module[UnittedQuantity[Angle, N], N], distanceModule: Module[UnittedQuantity[Distance, N], N]): UnittedQuantity[Distance, N]

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

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

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

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

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

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

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

    Permalink
  16. implicit def eqIndexedSeq[T](implicit arg0: Eq[T]): Eq[IndexedSeq[T]]

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

    Permalink
  18. implicit def eqSet[S](implicit arg0: Eq[S]): Eq[Set[S]]

    Permalink
  19. def fib(n: Int): Int

    Permalink
  20. object forall

    Permalink
  21. package game

    Permalink
  22. def getLine(): String

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

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

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

    Permalink
  26. package logic

    Permalink
  27. def monteCarloPiEstimate[F, N, V, G](trials: F, n2v: (N) ⇒ V)(implicit arg0: ConvertableTo[V], finite: Finite[F, N], functor: Functor[F, N, V, G], agg: Aggregatable[G, V, V], field: Field[V]): V

    Permalink

    Monte Carlo approximation of pi http://en.wikipedia.org/wiki/Monte_Carlo_method

    Monte Carlo approximation of pi http://en.wikipedia.org/wiki/Monte_Carlo_method

    TODO get n2v implicitly?

  28. implicit val orderBooleans: Order[Boolean]

    Permalink
  29. implicit val orderChars: Order[Char]

    Permalink
  30. implicit val orderDoubles: Order[Double]

    Permalink
  31. implicit val orderStrings: Order[String]

    Permalink
  32. implicit val orderSymbols: Order[Symbol]

    Permalink
  33. package quanta

    Permalink
  34. def recfib(n: Int): Int

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

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

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

    Permalink
  38. def sine[N](a: UnittedQuantity[Angle, N])(implicit arg0: MultiplicativeMonoid[N], arg1: Eq[N], arg2: Trig[N], converter: AngleConverter[N]): N

    Permalink
  39. def square[N](x: N)(implicit arg0: Field[N]): N

    Permalink
  40. package stats

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

    Permalink
  42. package syntax

    Permalink
  43. def tangent[N](a: UnittedQuantity[Angle, N])(implicit arg0: MultiplicativeMonoid[N], arg1: Eq[N], arg2: Trig[N], converter: AngleConverter[N]): N

    Permalink
  44. object thereexists

    Permalink
  45. def wallisΠ(iterations: Int = 10000): Rational

    Permalink

    Englishman John Wallis (1616 - 1703) approximation of π in 1655

  46. object

    Permalink
  47. val : forall.type

    Permalink
  48. val : thereexists.type

    Permalink
  49. def [N](x: N)(implicit arg0: NRoot[N]): N

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped