示例#1
0
 public static Cons Repeat(object value)
 {
     return(AsLazyList(SeqBase.Repeat(-1, value)));
 }
示例#2
0
 public static Cons Repeat(int count, object value)
 {
     return(AsLazyList(SeqBase.Repeat(count, value)));
 }