// "Create Constructor" "true" public class Seq { public Seq() {} public Seq(T x, Seq xs) { //To change body of created methods use File | Settings | File Templates. } static Seq nil () { return new Seq (); } static Seq cons (V x, Seq xs) { return new Seq (x, xs); } }