Click or drag to resize

ContainerHelperLessOrEqualV(ListV, ListV) Method

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.1
Syntax
C#
public static bool LessOrEqual<V>(
	List<V> a,
	List<V> b
)

Parameters

a  ListV
A List.
b  ListV
Another List of compatible type to a.

Type Parameters

V

Return Value

Boolean
Boolean result of List comparison.
See Also