c

chicory-stream

Stream processing like Java 8 streams, but works with Java 6 and have slightly different design. * Chicory-stream provides sequential-only streams, no parallel support. * Chicory-stream allows easy forking and reuse of streams, unlike Java 8 where stream can be used only once. * Chicory-stream automatically and transparently opens and closes resources each time stream is used, unlike Java 8 where stream should be manually closed. Part of chicory.
https://github.com/sviperll/chicory/tree/master/chicory-stream
文件下载
文件名 操作
chicory-stream-0.34.jar 下载
chicory-stream-0.34.pom 下载
chicory-stream-0.34-sources.jar 下载
Apache Maven
<dependency>
  <groupId>com.github.sviperll</groupId>
  <artifactId>chicory-stream</artifactId>
  <version>0.34</version>
</dependency>
Gradle Groovy
implementation 'com.github.sviperll:chicory-stream:0.34'
Gradle Kotlin
implementation("com.github.sviperll:chicory-stream:0.34")
Scala SBT
libraryDependencies += "com.github.sviperll" % "chicory-stream" % "0.34"
Groovy Grape
@Grapes(
  @Grab(group='com.github.sviperll', module='chicory-stream', version='0.34')
)
Apache Ivy
<dependency org="com.github.sviperll" name="chicory-stream" rev="0.34" />
Leiningen
[com.github.sviperll/chicory-stream "0.34"]
Apache Buildr
'com.github.sviperll:chicory-stream:jar:0.34'