MCPcopy Index your code
hub / github.com/apache/groovy / filter

Method filter

src/main/java/groovy/concurrent/AsyncChannel.java:136–136  ·  view source on GitHub ↗

Returns a new channel that passes only elements matching the predicate. @param predicate the filter function @return a new filtered channel @since 6.0.0

(Predicate<T> predicate)

Source from the content-addressed store, hash-verified

134 * @since 6.0.0
135 */
136 default AsyncChannel<T> filter(Predicate<T> predicate) {
137 AsyncChannel<T> out = create(getCapacity());
138 AsyncSupport.getExecutor().execute(() -> {
139 try {

Callers 15

findTokensToRenderMethod · 0.65
filterNewlinesMethod · 0.65
lsMethod · 0.65
variableInputStreamMethod · 0.65
expandGlobMethod · 0.65
sourcesForPackageMethod · 0.65
innerJoinMethod · 0.65
whereMethod · 0.65
groupByMethod · 0.65
groupByIntoMethod · 0.65

Calls

no outgoing calls