Click or drag to resize

ContainerHelperShuffleV(ListV) Method

Creates a new dynamic array with permuted content.

Namespace: de.unika.ipd.grGen.libGr
Assembly: libGr (in libGr.dll) Version: GrGen.NET 7.1
Syntax
C#
public static List<V> Shuffle<V>(
	List<V> array
)
where V : new()

Parameters

array  ListV
A List, i.e. dynamic array.

Type Parameters

V

Return Value

ListV
A new List, i.e. dynamic array, containing the elements of the input array in randomly different order.
See Also