Trait/Object

com.github.jonnylaw.model

Collection

Related Docs: object Collection | package model

Permalink

trait Collection[F[_]] extends Serializable

A typeclass representing a Collection with a few additional features required for implementing the particle filter

Linear Supertypes
Serializable, Serializable, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Collection
  2. Serializable
  3. Serializable
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def append[A](fa: F[A])(a: A): F[A]

    Permalink
  2. abstract def drop[A](fa: F[A])(n: Int): F[A]

    Permalink
  3. abstract def fill[A](n: Int)(a: ⇒ A): F[A]

    Permalink
  4. abstract def flatMap[A, B](fa: F[A])(f: (A) ⇒ F[B]): F[B]

    Permalink
  5. abstract def foldLeft[A, B](fa: F[A], z: B)(f: (B, A) ⇒ B): B

    Permalink
  6. abstract def get[A](fa: F[A])(i: Int): A

    Permalink
  7. abstract def getClass(): Class[_]

    Permalink
    Definition Classes
    Any
  8. abstract def indexWhere[A](fa: F[A])(cond: (A) ⇒ Boolean): Int

    Permalink
  9. abstract def indices[A](fa: F[A]): F[Int]

    Permalink
  10. abstract def isEmpty[A](fa: F[A]): Boolean

    Permalink
  11. abstract def map[A, B](fa: F[A])(f: (A) ⇒ B): F[B]

    Permalink
  12. abstract def max[A](fa: F[A])(implicit arg0: Ordering[A]): A

    Permalink
  13. abstract def pure[A](a: A): F[A]

    Permalink
  14. abstract def scanLeft[A, B](fa: F[A], z: B)(f: (B, A) ⇒ B): F[B]

    Permalink
  15. abstract def size[A](fa: F[A]): Int

    Permalink
  16. abstract def toArray[A](fa: F[A])(implicit arg0: ClassTag[A]): Array[A]

    Permalink
  17. abstract def toTreeMap[A, B](fa: F[(A, B)])(implicit arg0: Ordering[A]): TreeMap[A, B]

    Permalink
  18. abstract def toVector[A](fa: F[A]): Vector[A]

    Permalink
  19. abstract def unzip[A, B](fa: F[(A, B)]): (F[A], F[B])

    Permalink
  20. abstract def zip[A, B](fa: F[A], fb: F[B]): F[(A, B)]

    Permalink

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  6. def hashCode(): Int

    Permalink
    Definition Classes
    Any
  7. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  8. def toString(): String

    Permalink
    Definition Classes
    Any

Inherited from Serializable

Inherited from Serializable

Inherited from Any

Ungrouped