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

xxl.mathematica.list.Rest Maven / Gradle / Ivy

package xxl.mathematica.list;

import java.util.List;

/**
 * 去掉第一个
 */

public class Rest {
    /**
     * 去掉 list 中第一个元素
     *
     * @param list
     * @param 
     * @return
     */
    public static  List rest(List list) {
        return io.vavr.collection.List.ofAll(list)
                .tail()
                .asJava();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy