DEFINITION - SUB
    AddTail list&, node& -- append a (Min)ListNode& to the tail of a list

OPERATION
    Add a (Min)ListNode& to the tail of a doubly linked list.

ARGUMENTS
    list& -- pointer to the target (Min)ListHeader& 
    node& -- pointer to the (Min)ListNode& to insert at tail

SEE ALSO
    Special Case Insertion

                                                 Back to Function Reference