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

db.sql.api.impl.tookit.Lists Maven / Gradle / Ivy

There is a newer version: 1.7.6-RC2
Show newest version
package db.sql.api.impl.tookit;

import java.util.List;

public final class Lists {


    public static  List merge(List list, T[] ts) {
        if (ts == null || ts.length < 1) {
            return list;
        }
        for (T t : ts) {
            list.add(t);
        }
        return list;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy