예제 #1
0
 public static Cons Repeatedly(int count, IApply func)
 {
     return(AsLazyList(SeqBase.Repeatedly(count, func)));
 }
예제 #2
0
 public static Cons Repeatedly(IApply func)
 {
     return(AsLazyList(SeqBase.Repeatedly(-1, func)));
 }