All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.permazen.tuple.Tuple2 Maven / Gradle / Ivy

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