I am having a hard time understanding what the shift and unshift methods of the Array class do in Ruby. Can somebody help me understand what they do?
|
Looking at the Ruby Documentation Array.shift removes the first element from the array and returns it
Unshift prepends the provided value to the front of the array, moving all other elements up one
|
|||||||||
|
|
Examples:
|
|||||
|
|
It grabs the first element, removes it from the array, and returns the removed element. It's basically a way to treat an array like a stack: |
|||||||||||||||||||
|
|
If you can think of the array as being like a queue of values to be processed, then you can take the next (front) value and "shift" the other valuess over to occupy the space made available. unshift puts values back in - maybe you're not ready to process some of them, or will let some later code handle them. |
|||
|
|
|
It returns the first element of the array, and removes it from the array, shifting the elements back one place. So shifting returns More here. |
||||
|
|
shift/unshiftare likepush/popon the other end of the array, you can mentally drop the 'f' from the name of the methods to remember which one 'dumps' elements and which one 'inserts' them. :) – Phrogz Jan 21 '11 at 17:37