Interface Seq<T>

    • Method Summary

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

        forEach, spliterator
    • Method Detail

      • flatMap

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

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