mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
17 lines
280 B
Java
17 lines
280 B
Java
// "Create constructor" "true"
|
|
public class Seq<T> {
|
|
public Seq() {}
|
|
|
|
public Seq(T x, Seq<T> xs) {
|
|
|
|
}
|
|
|
|
static <T> Seq<T> nil () {
|
|
return new Seq<T> ();
|
|
}
|
|
|
|
static <V> Seq<V> cons (V x, Seq<V> xs) {
|
|
return new Seq<V> (x, xs);
|
|
}
|
|
}
|