Exemplo n.º 1
0
 public static Cons Repeat(object value)
 {
     return(AsLazyList(SeqBase.Repeat(-1, value)));
 }
Exemplo n.º 2
0
 public static Cons Repeat(int count, object value)
 {
     return(AsLazyList(SeqBase.Repeat(count, value)));
 }