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

com.perceptnet.commons.utils.ArrayIndexedAccessProxy Maven / Gradle / Ivy

The newest version!
package com.perceptnet.commons.utils;

import com.perceptnet.abstractions.IndexedAccess;

/**
 * created by vkorovkin on 26.04.2018
 */
public class ArrayIndexedAccessProxy implements IndexedAccess {
    private final T[] items;

    public ArrayIndexedAccessProxy(T[] items) {
        this.items = items;
    }

    @Override
    public int size() {
        return items.length;
    }

    @Override
    public T get(int i) {
        return items[i];
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy