Esempio n. 1
0
 public static Cons DropWhile(IApply predicate, IEnumerable seq)
 {
     return(MakeCons(SeqBase.DropWhile(predicate, seq).GetEnumerator()));
 }