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

io.github.aleksas.arduino.simplerpc.Tuple Maven / Gradle / Ivy

There is a newer version: 1.0.24
Show newest version
package io.github.aleksas.arduino.simplerpc;

/**
 * Var size tuple.
 */
public class Tuple extends org.javatuples.Tuple {
    protected Tuple(final Object... values) {
        super(values);
    }    

    @Override
    public int getSize() {
        return toList().size();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy