Click or drag to resize

ContainerHelperLessOrEqualV Method (ListV, ListV)

Checks if List a is a sublist of b. Requires a to contain less or same number of entries than b and same values at same index for being true.

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

Parameters

a
Type: System.Collections.GenericListV
A List.
b
Type: System.Collections.GenericListV
Another List of compatible type to a.

Type Parameters

V

Return Value

Type: Boolean
Boolean result of List comparison.
See Also