We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 615c440 commit 3f94144Copy full SHA for 3f94144
src/main/java/nextflow/script/types/shim/Iterable.java
@@ -138,6 +138,11 @@ Transforms each element in the iterable with the given closure and returns the s
138
""")
139
<R> R sum(Function<E,R> transform);
140
141
+ @Description("""
142
+ Converts the iterable to a list.
143
+ """)
144
+ List<E> toList();
145
+
146
@Description("""
147
Converts the iterable to a set. Duplicate elements are excluded.
148
0 commit comments