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

cz.mmsparams.api.utils.TupleUtils Maven / Gradle / Ivy

The newest version!
package cz.mmsparams.api.utils;

import java.util.ArrayList;
import java.util.List;


public class TupleUtils
{
    private TupleUtils()
    {
    }

    public static  List getYOnly(List> tuples)
    {
        List result = new ArrayList<>();

        for (Tuple t : tuples)
        {
            result.add(t.y);
        }
        return result;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy