xxl.mathematica.list.Join Maven / Gradle / Ivy
package xxl.mathematica.list;
import java.util.List;
/**
* 连接
*/
public class Join {
/**
* 连接两个列表
*
* @param list1
* @param list2
* @param
* @return
*/
public static List join(List list1, List list2) {
return io.vavr.collection.List.ofAll(list1)
.appendAll(list2)
.asJava();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy