エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Perlの組み込み関数 shift の翻訳 - perldoc.jp
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Perlの組み込み関数 shift の翻訳 - perldoc.jp
Removes and returns the first element of an array. This shortens the array by one and moves every... Removes and returns the first element of an array. This shortens the array by one and moves everything down. 配列の 最初の 値を削除して返します。 配列を一つ短くして、すべての要素を前へずらします。 my @arr = ('cat', 'dog'); my $item = shift(@arr); # 'cat' # @arr is now ('dog');

