Click or drag to resize

ContainerHelper.ArrayKeepOneForEach<V> Method (List<V>)

Creates a new array containing the content of the old array but freed of duplicates.

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

Parameters

a
Type: System.Collections.Generic.List<V>
A List, i.e. dynamic array.

Type Parameters

V

Return Value

Type: List<V>
A new List with the content of the old list freed of duplicates.
See Also