Object

morphir.sdk

List

Related Doc: package sdk

Permalink

object List

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

Type Members

  1. type List[+A] = scala.collection.immutable.List[A]

    Permalink

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. def all[A](predicate: (A) ⇒ Boolean)(xs: List[A]): Boolean

    Permalink
    Annotations
    @inline()
  5. def any[A](predicate: (A) ⇒ Boolean)(xs: List[A]): Boolean

    Permalink
    Annotations
    @inline()
  6. def append[A](xs: List[A])(ys: List[A]): List[A]

    Permalink
    Annotations
    @inline()
  7. def apply[A](items: A*): List[A]

    Permalink
  8. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def concat[A](lists: List[List[A]]): List[A]

    Permalink
    Annotations
    @inline()
  11. def concatMap[A, B](f: (A) ⇒ List[B])(lists: List[A]): List[B]

    Permalink
    Annotations
    @inline()
  12. def cons[A](head: A)(tail: List[A]): List[A]

    Permalink
    Annotations
    @inline()
  13. def drop[A](n: Int)(xs: List[A]): List[A]

    Permalink
    Annotations
    @inline()
  14. def empty[A]: List[A]

    Permalink
    Annotations
    @inline()
  15. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  17. def filter[A](f: (A) ⇒ Boolean)(xs: List[A]): List[A]

    Permalink
    Annotations
    @inline()
  18. def filterMap[A, B](f: (A) ⇒ Maybe[B])(xs: List[A]): List[B]

    Permalink
  19. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. def foldl[A, B](f: (A) ⇒ (B) ⇒ B)(initial: B)(xs: List[A]): B

    Permalink
  21. def foldr[A, B](f: (A) ⇒ (B) ⇒ B)(initial: B)(xs: List[A]): B

    Permalink
  22. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  24. def head[A](xs: List[A]): Maybe[A]

    Permalink
    Annotations
    @inline()
  25. def indexedMap[X, R](fn: (Int) ⇒ (X) ⇒ R)(xs: List[X]): List[R]

    Permalink
  26. def intersperse[A](elem: A)(xs: List[A]): List[A]

    Permalink
  27. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  28. def length[A](xs: List[A]): Int

    Permalink
    Annotations
    @inline()
  29. def map[A, B](mapping: (A) ⇒ B)(list: List[A]): List[B]

    Permalink
    Annotations
    @inline()
  30. def map2[A, B, R](mapping: (A) ⇒ (B) ⇒ R)(xs: List[A])(ys: List[B]): List[R]

    Permalink

    Combine two lists, combining them with the given function.

    Combine two lists, combining them with the given function. If one list is longer, the extra elements are dropped.

    A

    the type of the first list

    B

    the type of the second list

    R

    the type of the resulting list

    mapping

    a mapping function

    xs

    the first list

    ys

    the second list

    returns

    a list containing the combined elements of list1 and list2 using the mapping function.

  31. def map3[X, Y, Z, R](mapping: (X) ⇒ (Y) ⇒ (Z) ⇒ R)(xs: List[X])(ys: List[Y])(zs: List[Z]): List[R]

    Permalink
  32. def map4[A, B, C, D, R](mapping: (A) ⇒ (B) ⇒ (C) ⇒ (D) ⇒ R)(as: List[A])(bs: List[B])(cs: List[C])(ds: List[D]): List[R]

    Permalink
  33. def map5[A, B, C, D, E, R](mapping: (A) ⇒ (B) ⇒ (C) ⇒ (D) ⇒ (E) ⇒ R)(as: List[A])(bs: List[B])(cs: List[C])(ds: List[D])(es: List[E]): List[R]

    Permalink
  34. def member[A, A1 >: A](candidate: A1)(xs: List[A]): Boolean

    Permalink
    Annotations
    @inline()
  35. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  38. def partition[A](f: (A) ⇒ Boolean)(xs: List[A]): (List[A], List[A])

    Permalink
    Annotations
    @inline()
  39. def range(start: Int)(end: Int): List[Int]

    Permalink
    Annotations
    @inline()
  40. def repeat[A](n: Int)(elem: ⇒ A): List[A]

    Permalink
    Annotations
    @inline()
  41. def reverse[A](xs: List[A]): List[A]

    Permalink
    Annotations
    @inline()
  42. def singleton[A](item: A): List[A]

    Permalink
    Annotations
    @inline()
  43. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  44. def tail[A](xs: List[A]): Maybe[List[A]]

    Permalink
    Annotations
    @inline()
  45. def take[A](n: Int)(xs: List[A]): List[A]

    Permalink
    Annotations
    @inline()
  46. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  47. def unzip[A, B](xs: List[(A, B)]): (List[A], List[B])

    Permalink
    Annotations
    @inline()
  48. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped