<-- Previous || Up || Next -->

Tail Property
Deque Class

Public Property Get Tail( _
    ByRef rValue As Variant _
    ) As Boolean

Return the Value at the Tail of the Deque without removing the value from the Deque.

Example:
    Assuming
       Dim dqTemp As New Deque
    for example
       dqTemp.AddTail 12
       Dim varTemp As Variant
       dqTemp.Tail varTemp
    leaves
       varTemp = 12
See also:
    Head Property
    RemoveTail Function
rValue: 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.
Return Value: Function returns True upon success and False upon failure (when the Deque is empty).
v1.3 Addition: This Property Get Function is new to this version of Entisoft Tools.

Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.