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 656f7dc commit 8a85671Copy full SHA for 8a85671
scijava-ops-engine/src/main/java/org/scijava/ops/engine/stats/Size.java
@@ -43,7 +43,7 @@ public class Size implements OpCollection {
43
* @param iterable the data to operate over
44
* @return the size of the dataset, as as {@link Long}
45
*/
46
- @OpMethod(names = "stats.size", type = Function.class)
+ @OpMethod(names = "stats.size", type = Function.class, priority = 50.0)
47
public static <T> Long sizeAsLong(Iterable<T> iterable) {
48
return StreamSupport.stream(iterable.spliterator(), false).count();
49
}
0 commit comments