list_to_array


list_to_array(xs)
      

Return an array with all the elements of the list xs.

Examples:


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

Also see:

array_to_list


Core Module Index | Contents