このページは大阪弁化フィルタによって翻訳生成されたんですわ。

翻訳前ページへ


unshift - perldoc.perl.org
The Wayback Machine - http://web.archive.org/web/20170429083849/http://perldoc.perl.org:80/functions/unshift.html

Perl version

Modules

  • ABCDE
  • FGHIL
  • MNOPS
  • TUX

unshift

Perl 5 version 24.0 documentation
Recently read

unshift

  • unshift ARRAY,LIST

    Does the opposite of a shift. Or the opposite of a push, depending on how you look at it. Prepends list to the front of the array and returns the new number of elements in the array.

    1. unshift(@ARGV, '-e') unless $ARGV[0] =~ /^-/;

    Note the LIST is prepended whole, not one element at a time, so the prepended elements stay in the same order. Use reverse to do the reverse.

    Starting with Perl 5.14, an experimental feature allowed unshift to take a scalar expression. This experiment has been deemed unsuccessful, and was removed as of Perl 5.24.