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

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

The newest version!

/*
 * Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
 */

package io.permazen.tuple;

/**
 * A tuple of three values.
 *
 * 

* Instances are immutable. * * @param first value type * @param second value type * @param third value type */ public class Tuple3 extends AbstractHas3 { /** * Constructor. * * @param v1 the first value * @param v2 the second value * @param v3 the third value */ public Tuple3(V1 v1, V2 v2, V3 v3) { super(v1, v2, v3); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy