Public Function RemoveTail( _ Optional ByRef rValue As Variant _ ) As Boolean
Assuming Dim dqTemp As New Deque dqTemp.AddTail 12 dqTemp.AddTail "Sam" Dim varTemp As Variant Dim bResult As Boolean for example bResult = dqTemp.RemoveTail(varTemp) leaves bResult = True varTemp = "Sam" also bResult = dqTemp.RemoveTail(varTemp) leaves bResult = True varTemp = 12See also:
RemoveHead Function RemoveAll Subroutine Tail Property AddTail SubroutinerValue: Value at the tail of the Deque is assigned into variable rValue. rValue must be compatible with the value that is being retrieved from the Deque. rValue is optional and can be omitted in order to remove the value from the Deque without returning the value.
Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.