Power Query
published
Search
⌃K

List.Buffer

List.Buffer

Buffers a list.
function (list as list) as list

Description

Buffers the list list in memory. The result of this call is a stable list.

Category

List.Selection

Examples

Create a stable copy of the list {1..10}.
List.Buffer({1..10})
{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}