MVN

com.github.sviperll : chicory-stream

Maven & Gradle

Sep 13, 2016
5 stars

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.

<dependency>
    <groupId>com.github.sviperll</groupId>
    <artifactId>chicory-stream</artifactId>
    <version>0.36</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.sviperll : chicory-stream to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.36
  • Latest Release Candidate: 0.29-rc2
  • Latest Beta: 0.26-beta1

All Versions

Choose a version of com.github.sviperll : chicory-stream to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.36
chicory-stream-0.36
0.35
chicory-stream-0.35
0.34
chicory-stream-0.34
0.33
chicory-stream-0.33
0.32
chicory-stream-0.32
0.31
chicory-stream-0.31
0.30
chicory-stream-0.30
0.29
chicory-stream-0.29
chicory-stream-0.29-rc2
0.27
chicory-stream-0.27
chicory-stream-0.27-rc5
chicory-stream-0.27-rc3
chicory-stream-0.27-rc2
chicory-stream-0.27-rc1
0.26
chicory-stream-0.26
chicory-stream-0.26-beta1
0.25
chicory-stream-0.25
0.24
chicory-stream-0.24
0.23
chicory-stream-0.23
chicory-stream-0.23-rc8
chicory-stream-0.23-rc7
chicory-stream-0.23-rc6
0.22
chicory-stream-0.22
0.21
chicory-stream-0.21
0.20
chicory-stream-0.20
0.19
chicory-stream-0.19
0.18
chicory-stream-0.18
0.17
chicory-stream-0.17
0.16
chicory-stream-0.16
0.15
chicory-stream-0.15
0.14
chicory-stream-0.14
0.13
chicory-stream-0.13
0.12
chicory-stream-0.12
0.11
chicory-stream-0.11
0.10
chicory-stream-0.10
0.9
chicory-stream-0.9
0.8
chicory-stream-0.8
0.7
chicory-stream-0.7
0.6
chicory-stream-0.6
0.5
chicory-stream-0.5
0.4
chicory-stream-0.4
0.3
chicory-stream-0.3
0.1
chicory-stream-0.1

How to add a dependency to Maven

Add the following com.github.sviperll : chicory-stream maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.sviperll</groupId>
    <artifactId>chicory-stream</artifactId>
    <version>0.36</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.sviperll : chicory-stream gradle dependency to your build.gradle file:

implementation 'com.github.sviperll:chicory-stream:0.36'

Gradle Kotlin DSL: Add the following com.github.sviperll : chicory-stream gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.sviperll:chicory-stream:0.36")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.sviperll : chicory-stream sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.sviperll" % "chicory-stream" % "0.36"