Registry / utility / streams

streams

JSON →
library2.10.0javamavenunverified

Utility library providing enhanced stream operations and collectors for Java.

<dependency> <groupId>com.palantir.common</groupId> <artifactId>streams</artifactId> <version>2.10.0</version> </dependency>
INSTALL
IMPORT
SIG · STREAMS
S
streams
utilityjavav2.10.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Streams
com.palantir.common.streams.Streams

Minimal example using Streams.zip to combine two streams.

import com.palantir.common.streams.Streams; import java.util.stream.Stream; public class Example { public static void main(String[] args) { Stream<Integer> stream = Stream.of(1, 2, 3); Streams.zip(stream, Stream.of("a", "b", "c"), (i, s) -> i + s) .forEach(System.out::println); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
2.10.0latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
9 hits · last 30 days
node
6
Amazon
1
Bingbot
1
Resources
streams — mvn dependency:get streams · libregistry