I am learning how to use arrays. The manual seems to be saying something that is contradictory. Am I missing something or is it describing "push front" and "push back" in the exact same way?
(The following is a copy from the online manual.)
Manipulating arrays
A one-dimensional array, sized N x 1 x 1, serves as a simple list of N values. The actions in the Manipulation category (e.g. Push, Pop) allow one-dimensional arrays to be used like other data structures. (These actions work with multidimensional arrays, but are intended for the one-dimensional case.)
For example, the following scheme implements a queue (first in first out, or 'FIFO'):
•Add new items with Push front
•Retrieve the next value with Array.Back
•Remove the retrieved value with Pop back
The following scheme implements a stack (last in first out, or 'LIFO'):
•Add new items with Push back
•Retrieve the next value with Array.Back
•Remove the retrieved value with Pop back