MCPcopy Create free account
hub / github.com/Card-Forge/forge / stream

Method stream

forge-core/src/main/java/forge/util/StreamUtil.java:19–21  ·  view source on GitHub ↗

@return a Stream with the provided iterable as its source.

(Iterable<T> iterable)

Source from the content-addressed store, hash-verified

17 * @return a Stream with the provided iterable as its source.
18 */
19 public static <T> Stream<T> stream(Iterable<T> iterable) {
20 return StreamSupport.stream(iterable.spliterator(), false);
21 }
22
23 /**
24 * @return a Stream with the provided array as its source.

Callers 15

formatReminderTextMethod · 0.95
handlePaidMethod · 0.95
filterResultsMethod · 0.95
pickWeightedCardBlockMethod · 0.95
generateMethod · 0.95
generateTextExportMethod · 0.95
groupSumByMethod · 0.95
areWordsInIterableMethod · 0.95
countDecksForEachCardMethod · 0.95
countDecksForEachCardMethod · 0.95

Calls 1

streamMethod · 0.65

Tested by 1

areWordsInIterableMethod · 0.76