Fmlib_std.DequeSourceA double ended queue. Insert from both ends, pop only from the front.
'a t A double ended queue with element type 'a.
push_front e q Push the element e to the front of the queue q.
push_rear e q Push the element e to the rear of the queue q.
update_first f q Update the first element of the queue q with the update function f.
update_last f q Update the last element of the queue q with the update function f.