Click or drag to resize

ContainerHelperNewDeque(Type, Object) Method

Creates a new Deque of the given value type, initialized with the content of the old Deque (clones the old Deque)

Namespace: de.unika.ipd.grGen.libGr
Assembly: libGr (in libGr.dll) Version: GrGen.NET 7.1
Syntax
C#
public static IDeque NewDeque(
	Type valueType,
	Object oldDeque
)

Parameters

valueType  Type
The value type of the Deque to be created
oldDeque  Object
The old Deque to be cloned

Return Value

IDeque
The newly created Deque, containing the content of the old Deque, null if unsuccessfull
See Also