Click or drag to resize

ContainerHelperShuffleV Method (ListV)

Creates a new dynamic array with permuted content.

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

Parameters

array
Type: System.Collections.GenericListV
A List, i.e. dynamic array.

Type Parameters

V

Return Value

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