Go to the
first
,
previous
,
next
,
last
section,
table of contents
.
unshift
`unshift(ARRAY,LIST)'
視点により、
shift
または
push
の逆を行う。
LIST
を
ARRAY
の前に付け、できた配列の要素数を返す。
unshift(ARGV, '-e') unless $ARGV[0] =~ /^-/;
See section
shift
, and See section
push
.
Go to the
first
,
previous
,
next
,
last
section,
table of contents
.