Perl Programming/Keywords/push

Previous: prototype Keywords Next: q

The push keyword

The push function treats ARRAY as a stack by appending LIST values to ARRAY. Returns the number of elements in the ARRAY after push is completed.

From Perl 5.14.0 onwards, a scalar EXPRESSION can be passed that should hold a reference to an unblessed array. The argument is dereferenced automatically. This is a highly experimental aspect of push and may change in future Perl versions.

Syntax

  push ARRAY, LIST
  push EXPRESSION, LIST

See also

Previous: prototype Keywords Next: q
Category:Book:Perl Programming#Keywords/push%20
Category:Book:Perl Programming