Interface PVector<E>

Type Parameters:
E -
All Superinterfaces:
Collection<E>, Iterable<E>, List<E>, PCollection<E>, PSequence<E>
All Known Implementing Classes:
TreePVector

public interface PVector<E> extends PSequence<E>
An immutable, persistent list.
  • Method Details

    • plus

      PVector<E> plus(E e)
      Returns a vector consisting of the elements of this with e appended.
      Specified by:
      plus in interface PCollection<E>
      Specified by:
      plus in interface PSequence<E>
      Parameters:
      e -
      Returns:
      a collection which contains e and all of the elements of this
    • plusAll

      PVector<E> plusAll(Collection<? extends E> list)
      Returns a vector consisting of the elements of this with list appended.
      Specified by:
      plusAll in interface PCollection<E>
      Specified by:
      plusAll in interface PSequence<E>
      Parameters:
      list -
      Returns:
      a collection which contains all of the elements of list and this
    • with

      PVector<E> with(int i, E e)
      Specified by:
      with in interface PSequence<E>
      Parameters:
      i -
      e -
      Returns:
      a sequence consisting of the elements of this with e replacing the element at index i.
    • plus

      PVector<E> plus(int i, E e)
      Specified by:
      plus in interface PSequence<E>
      Parameters:
      i -
      e -
      Returns:
      a sequence consisting of the elements of this with e inserted at index i.
    • plusAll

      PVector<E> plusAll(int i, Collection<? extends E> list)
      Specified by:
      plusAll in interface PSequence<E>
      Parameters:
      i -
      list -
      Returns:
      a sequence consisting of the elements of this with list inserted at index i.
    • minus

      PVector<E> minus(Object e)
      Description copied from interface: PSequence
      Returns a sequence consisting of the elements of this without the first occurrence of e.
      Specified by:
      minus in interface PCollection<E>
      Specified by:
      minus in interface PSequence<E>
      Parameters:
      e -
      Returns:
      this with a single instance of e removed, if e is in this
    • minusAll

      PVector<E> minusAll(Collection<?> list)
      Specified by:
      minusAll in interface PCollection<E>
      Specified by:
      minusAll in interface PSequence<E>
      Parameters:
      list -
      Returns:
      this with all elements of list completely removed
    • minus

      PVector<E> minus(int i)
      Specified by:
      minus in interface PSequence<E>
      Parameters:
      i -
      Returns:
      a sequence consisting of the elements of this with the element at index i removed.
    • subList

      PVector<E> subList(int start, int end)
      Specified by:
      subList in interface List<E>
      Specified by:
      subList in interface PSequence<E>