Value of Composite Object
I've read PostScript language reference, but I'm still unclear, what will be if we Save array of integers than changed values of integers and than Restore the arrray?
Citation from 3.7.1:
"The array is a composite object whose value resides in VM. The value in turn
consists of two objects, an integer and a string."
But integers are simple objects and contain values neither local nor global VM but in themselves. So, I can suppose that Restore doesn't change back values of integers. But what does it mean following statement in this case:
Citation from 3.7.3:
"Resets the values of all composite objects in local VM, except strings, to their
state at the time of the save"
What the value of array of integers must be reset?
