Public Function RemoveHeadMulti( _
ParamArray rValues() As Variant _
) As Integer Assuming
Dim dqTemp As New Deque
dqTemp.AddHead 12
dqTemp.AddHead "Sam"
Dim varTemp1 As Variant
Dim varTemp2 As Variant
Dim intCount As Integer
for example
intCount = dqTemp.RemoveHead(varTemp1, varTemp2)
leaves
intCount = 2
varTemp1 = "Sam"
varTemp2 = 12See also: RemoveHead FunctionrValues: Values at the head of the Deque are assigned into these arguments. Arguments must be compatible with the corresponding values that are being retrieved from the Deque.
Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.