firstN()

概要

list から最初の n 項目を選択します。

構文

firstN ( list As List, _
         n As Integer ) As List 
引数 [タイプ] 説明
list List 元の一覧です。
n Integer 返される項目の数です。

例 1

Intent >firstN({ a, b, c, d, e, f}, 3) 
--> {a, b, c}