Represents pairs of two elements.
Represents pairs of two elements. This implementation was based on std::pair (from C++). You can see more here.
- Add one of the options below to the pom.xml file:
<dependency>
<groupId>io.github.wniemiec-data-java</groupId>
<artifactId>pair</artifactId>
<version>LATEST</version>
</dependency>
<dependency>
<groupId>wniemiec.data.java</groupId>
<artifactId>pair</artifactId>
<version>LATEST</version>
</dependency>
- Run
$ mvn install
- Use it
[...]
import wniemiec.data.java.Pair;
[...]
Pair<String, String> example = Pair.of("Hello", "World");
System.out.println( example.getFirst() + " " + example.getSecond() );
Property | Type | Description | Default |
---|---|---|---|
of | first: T, second: T: Pair<T,T> |
Creates a pair from two objects | - |
get{first, second} | void: Pair<T,T> |
Gets a position of the pair | - |
set{first, second} | value: T |
Sets a position of the pair | - |
Details about each version are documented in the releases section.
See the documentation on how you can contribute to the project here.
Name | Type | Description |
---|---|---|
dist | Directory |
Released versions |
docs | Directory |
Documentation files |
src | Directory |
Source files |