MVN

org.javimmutable : collections

Maven & Gradle

Aug 31, 2023
41 stars

JImmutable Collections · Library providing immutable/persistent collection classes for Java. While collections are immutable they provide methods for adding and removing values by creating new modified copies of themselves. Each copy shares almost all of its structure with other copies to minimize memory consumption.

<dependency>
    <groupId>org.javimmutable</groupId>
    <artifactId>collections</artifactId>
    <version>4.0.0a</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.javimmutable : collections to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 4.0.0a

All Versions

Choose a version of org.javimmutable : collections to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
4.0.x
collections-4.0.0a

How to add a dependency to Maven

Add the following org.javimmutable : collections maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.javimmutable</groupId>
    <artifactId>collections</artifactId>
    <version>4.0.0a</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.javimmutable : collections gradle dependency to your build.gradle file:

implementation 'org.javimmutable:collections:4.0.0a'

Gradle Kotlin DSL: Add the following org.javimmutable : collections gradle kotlin dependency to your build.gradle.kts file:

implementation("org.javimmutable:collections:4.0.0a")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.javimmutable : collections sbt scala dependency to your build.sbt file:

libraryDependencies += "org.javimmutable" % "collections" % "4.0.0a"