Exemplo n.º 1
0
 public static ISeq <T> Skip <T>(this ISeq <T> seq, long count) => seq.Slice(count, seq.Count - count);
Exemplo n.º 2
0
 public static ISeq <T> Take <T>(this ISeq <T> seq, long count) => seq.Slice(0, count);