Click or drag to resize
GenExtensionsSomeOfGeneratorsT Method (IEnumerableGen`1T)
A generator that picks a random number of elements from a list of generators.

Namespace: FsCheckUtils
Assembly: FsCheckUtils (in FsCheckUtils.dll) Version: 1.0.1.0 (1.0.1.0)
Syntax
public static Gen<List<T>> SomeOfGenerators<T>(
	IEnumerable<Gen<T>> gs
)

Parameters

gs
Type: System.Collections.GenericIEnumerableGenT
The list of generators to pick from.

Type Parameters

T
The type generated by the generators in the list of generators.

Return Value

Type: GenListT
A generator that generates a random number of elements from a list of generators.
See Also