Simple Tuples

Java library that provides simple tuples (heterogeneous, fixed size containers). All tuple classes are type safe and immutable.

License

License

GroupId

GroupId

com.github.mr746866
ArtifactId

ArtifactId

simple-tuples
Last Version

Last Version

1.0.1
Release Date

Release Date

Type

Type

jar
Description

Description

Simple Tuples
Java library that provides simple tuples (heterogeneous, fixed size containers). All tuple classes are type safe and immutable.
Project URL

Project URL

https://github.com/mr746866/simple-tuples
Source Code Management

Source Code Management

https://github.com/mr746866/simple-tuples

Download simple-tuples

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.mr746866/simple-tuples/ -->
<dependency>
    <groupId>com.github.mr746866</groupId>
    <artifactId>simple-tuples</artifactId>
    <version>1.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.mr746866/simple-tuples/
implementation 'com.github.mr746866:simple-tuples:1.0.1'
// https://jarcasting.com/artifacts/com.github.mr746866/simple-tuples/
implementation ("com.github.mr746866:simple-tuples:1.0.1")
'com.github.mr746866:simple-tuples:jar:1.0.1'
<dependency org="com.github.mr746866" name="simple-tuples" rev="1.0.1">
  <artifact name="simple-tuples" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.mr746866', module='simple-tuples', version='1.0.1')
)
libraryDependencies += "com.github.mr746866" % "simple-tuples" % "1.0.1"
[com.github.mr746866/simple-tuples "1.0.1"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

Simple Tuples for Java

Java library that provides simple tuples (heterogeneous, fixed size containers). All tuple classes are type safe and immutable.

Java does not provide tuples out of the box. This library aims to fill that gap with very simple implementations.

Warning: This is still a work in progress.

Installing

Gradle

Simple Tuples library is available on both JCenter and Maven Central.

Add the following to your build.gradle file, if you are not already using atleast one of JCenter and Maven Central.

repositories {
    jcenter()
    // Or
    mavenCentral()
}

And then add the following in your dependencies block.

dependencies {
    implementation 'com.github.mr746866:simple-tuples:1.0.1'
}

Versions

Version
1.0.1