array_to_list


array_to_list(arr)
      

Return a list with all the elements of the array arr.

Examples:


array_to_list(#[1, 2, 3])
// [1, 2, 3]
      

Also see:

list_to_array


Core Module Index | Contents