Class

com.cra.figaro.library.collection

FixedSizeArrayElement

Related Doc: package collection

Permalink

class FixedSizeArrayElement[Value] extends ContainerElement[Int, Value]

Holder for an element whose value is a fixed size array.

Linear Supertypes
ContainerElement[Int, Value], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. FixedSizeArrayElement
  2. ContainerElement
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FixedSizeArrayElement(fsa: Element[FixedSizeArray[Value]])

    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 aggregate[Value2](start: ⇒ Value2)(seqop: (Value2, Value) ⇒ Value2, combop: (Value2, Value2) ⇒ Value2): Element[Value2]

    Permalink

    Aggregate the results of applying an operator to each element.

    Aggregate the results of applying an operator to each element.

    Definition Classes
    ContainerElement
  5. def apply(i: Int): Element[Value]

    Permalink

    Creates an element whose value is the value at the corresponding index of the value of the process element.

    Creates an element whose value is the value at the corresponding index of the value of the process element.

    Definition Classes
    ContainerElement
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def chain[Value2](f: (Value) ⇒ Element[Value2]): ContainerElement[Int, Value2]

    Permalink

    Chain the given function pointwise through the value of the container element.

    Chain the given function pointwise through the value of the container element.

    Definition Classes
    ContainerElement
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def concat(that: FixedSizeArrayElement[Value]): FixedSizeArrayElement[Value]

    Permalink

    Concatenate the value of this fixed size array element with the value of another fixed size array element.

    Concatenate the value of this fixed size array element with the value of another fixed size array element. This method produces an element whose possible values are all the possible concatenations of this with that.

  10. def count(f: (Value) ⇒ Boolean): Element[Int]

    Permalink

    Returns an element representing the number of elements in the container whose values satisfy the predicate.

    Returns an element representing the number of elements in the container whose values satisfy the predicate.

    Definition Classes
    ContainerElement
  11. val element: Element[Container[Int, Value]]

    Permalink
    Definition Classes
    ContainerElement
  12. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  14. def exists(pred: (Value) ⇒ Boolean): Element[Boolean]

    Permalink

    Returns an element representing whether the value of any element in the container satisfies the predicate.

    Returns an element representing whether the value of any element in the container satisfies the predicate.

    Definition Classes
    ContainerElement
  15. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def foldLeft[Value2](start: Value2)(f: (Value2, Value) ⇒ Value2): Element[Value2]

    Permalink

    Produce the element over values obtained by selecting a particular container and folding through its values.

    Produce the element over values obtained by selecting a particular container and folding through its values.

    Definition Classes
    ContainerElement
  17. def foldRight[Value2](start: Value2)(f: (Value, Value2) ⇒ Value2): Element[Value2]

    Permalink

    Produce the element over values obtained by selecting a particular container and folding through its values.

    Produce the element over values obtained by selecting a particular container and folding through its values.

    Definition Classes
    ContainerElement
  18. def forall(pred: (Value) ⇒ Boolean): Element[Boolean]

    Permalink

    Returns an element representing whether the values of all elements in the container satisfy the predicate.

    Returns an element representing whether the values of all elements in the container satisfy the predicate.

    Definition Classes
    ContainerElement
  19. val fsa: Element[FixedSizeArray[Value]]

    Permalink
    Attributes
    protected[com.cra.figaro]
  20. def get(i: Int): Element[Option[Value]]

    Permalink

    Creates an element whose value is the value at the corresponding index in the value of the container element, if the index is in range, None otherwise.

    Creates an element whose value is the value at the corresponding index in the value of the container element, if the index is in range, None otherwise.

    Definition Classes
    ContainerElement
  21. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  24. def length: Element[Int]

    Permalink

    Returns an element representing the length of the container.

    Returns an element representing the length of the container.

    Definition Classes
    ContainerElement
  25. def map[Value2](f: (Value) ⇒ Value2): ContainerElement[Int, Value2]

    Permalink

    Map the given function pointwise through the value of the container element.

    Map the given function pointwise through the value of the container element.

    Definition Classes
    ContainerElement
  26. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  29. def randomElement(): Element[Value]

    Permalink

    Select a random element from the container.

    Select a random element from the container. Ensures that no IndexOutOfRange exception should be thrown.

    Definition Classes
    ContainerElement
  30. def reduce(f: (Value, Value) ⇒ Value): Element[Value]

    Permalink

    Produce the element over values obtained by selecting a particular container and reducing through its values.

    Produce the element over values obtained by selecting a particular container and reducing through its values.

    Definition Classes
    ContainerElement
  31. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

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

Inherited from ContainerElement[Int, Value]

Inherited from AnyRef

Inherited from Any

Ungrouped