Interface IndexedSeq<T>

  • All Superinterfaces:
    Iterable<T>, java.lang.Iterable<T>, Seq<T>, Traversable<T>

    public interface IndexedSeq<T>
    extends Seq<T>
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      <U> IndexedSeq<U> flatMap​(java.util.function.Function<? super T,​? extends java.lang.Iterable<? extends U>> mapper)  
      <U> IndexedSeq<U> map​(java.util.function.Function<? super T,​? extends U> mapper)  
      • Methods inherited from interface java.lang.Iterable

        forEach, spliterator
    • Method Detail

      • flatMap

        <U> IndexedSeq<U> flatMap​(java.util.function.Function<? super T,​? extends java.lang.Iterable<? extends U>> mapper)
        Specified by:
        flatMap in interface Seq<T>
        Specified by:
        flatMap in interface Traversable<T>
      • map

        <U> IndexedSeq<U> map​(java.util.function.Function<? super T,​? extends U> mapper)
        Specified by:
        map in interface Seq<T>
        Specified by:
        map in interface Traversable<T>