io.permazen.tuple.Tuple2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of permazen-util Show documentation
Show all versions of permazen-util Show documentation
Common utility classes used by Permazen.
The newest version!
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package io.permazen.tuple;
/**
* A tuple of two values.
*
*
* Instances are immutable.
*
* @param first value type
* @param second value type
*/
public class Tuple2 extends AbstractHas2 {
/**
* Constructor.
*
* @param v1 the first value
* @param v2 the second value
*/
public Tuple2(V1 v1, V2 v2) {
super(v1, v2);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy