Trait

com.github.jonnylaw.model

Collection

Related Doc: package model

Permalink

trait Collection[F[_]] extends AnyRef

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

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

Abstract Value Members

  1. abstract def fill[A](n: Int)(a: A): F[A]

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

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

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

    Permalink
  5. abstract def indexWhere[A](fa: F[A])(cond: (A) ⇒ Boolean): Int

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

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

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

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

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

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

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

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

    Permalink
  14. 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
    AnyRef → Any
  2. final def ##(): Int

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

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

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  14. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  16. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped