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

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

There is a newer version: 5.1.0
Show newest version

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

package io.permazen.tuple;

/**
 * A "tuple" of one value.
 *
 * 

* Instances are immutable. * * @param value type */ public class Tuple1 extends AbstractHas1 { /** * Constructor. * * @param v1 the value */ public Tuple1(V1 v1) { super(v1); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy