pushf(a, v)

Pushes object v at the front of array a.


See also push pop popf remove insert 


Example


a = ( 2, 3, 4 )

2  3  4

pushf( a, 1 )

1  2  3  4