Loose-Info.com
Last Update 2008/05/18
TOP - Perl - 関数 - unshift

配列の先頭にリスト値を挿入します。

戻り値1 = unshift 変数1 , リスト値1

戻り値1
挿入後の配列数
変数1
挿入する対象の配列
リスト値1
挿入する要素からなるリスト値

(例)
@a_test = ("a", "b", "c"); print "unshift前 : @a_test\n"; unshift(@a_test, ("x", "y", "z")); print "unshift後 : @a_test\n";

実行結果
unshift前 : a b c unshift後 : x y z a b c