GeneratorSkipTSource Method |
Namespace: Gamelogic.Extensions.Algorithms
public static IGenerator<TSource> Skip<TSource>( this IGenerator<TSource> generator, int count )
| Exception | Condition |
|---|---|
| ArgumentNullException | generator is null. |
| ArgumentOutOfRangeException | count is negative. |
var generator = Generator.Count(5).Skip(3);