makeLargeList()

概要

整数値から得られる i-1 から 0 まで降順に整数値を与えられた一覧 i 長のエントリを作成します。

構文

makeLargeList ( i As Integer ) As List 
引数 [タイプ] 説明
i 整数 出力一覧のエントリ数です

例 1

Intent >makeLargeList(4) 
--> {3, 2, 1, 0} 

例 2

Intent >makeLargeList(0) 
--> {}