Click or drag to resize

GeneratorGroupTSource Method (IGeneratorTSource, IGeneratorInt32)

Makes a generator that generates groups of items from the source generator.

Namespace:  Gamelogic.Extensions.Algorithms
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
C#
public static IGenerator<IList<TSource>> Group<TSource>(
	this IGenerator<TSource> generator,
	IGenerator<int> groupSizeGenerator
)

Parameters

generator
Type: Gamelogic.Extensions.AlgorithmsIGeneratorTSource
The source generator.
groupSizeGenerator
Type: Gamelogic.Extensions.AlgorithmsIGeneratorInt32
The generator used to determine the size of the groups to return.

Type Parameters

TSource
The type of the source generator.

Return Value

Type: IGeneratorIListTSource
IGenerator<IEnumerable<TSource>>.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IGeneratorTSource. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions
ExceptionCondition
ArgumentNullExceptiongenerator
ArgumentOutOfRangeExceptiongroupSizeGenerator;Argument must be positive.
See Also