Example #1
0
 public PureList<ElemType> append(PureList<ElemType> addedElts) {
   return new Cons<ElemType>(first, rest.append(addedElts));
 }