Click or drag to resize
GenExtensionsSomeOfGeneratorsT Method (Gen`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>(
	params Gen<T>[] gs
)

Parameters

gs
Type: GenT
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