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

com.jongsoft.lang.collection.tuple.AbstractTuple Maven / Gradle / Ivy

The newest version!
package com.jongsoft.lang.collection.tuple;

import com.jongsoft.lang.collection.Array;
import com.jongsoft.lang.collection.List;

class AbstractTuple implements Tuple {

    private List elements;

    AbstractTuple(Object...elements) {
        this.elements = Array.of(elements);
    }

    Object element(int index) {
        return elements.get(index);
    }

    @Override
    public List toList() {
        return elements;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy