List.BufferList.Buffer
構文Syntax
List.Buffer(list as list) as list
バージョン情報About
リスト list
をメモリ内にバッファーします。Buffers the list list
in memory. この呼び出しの結果は、安定したリストになります。The result of this call is a stable list.
例 1Example 1
リスト {1..10} の安定したコピーを作成します。Create a stable copy of the list {1..10}.
List.Buffer({1..10})
11 |
22 |
33 |
44 |
55 |
66 |
77 |
88 |
99 |
1010 |