Skip to content

Commit

Permalink
fix signatures for array_append, array_prepend, and aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-J-Ward committed May 7, 2024
1 parent a6923c9 commit 79f4459
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/functions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -562,10 +562,10 @@ expr_fn!(arrow_typeof);
scalar_function!(random, Random);

// Array Functions
array_fn!(array_append, array elem);
array_fn!(array_push_back, array_prepend, array elem);
array_fn!(list_append, array_append, array elem);
array_fn!(list_push_back, array_append, array elem);
array_fn!(array_append, array element);
array_fn!(array_push_back, array_append, array element);
array_fn!(list_append, array_append, array element);
array_fn!(list_push_back, array_append, array element);
array_fn!(array_dims, array);
array_fn!(array_distinct, array);
array_fn!(list_distinct, array_distinct, array);
Expand All @@ -583,10 +583,10 @@ array_fn!(array_positions, array_positions, array element);
array_fn!(list_positions, array_positions, array element);
array_fn!(array_ndims, array);
array_fn!(list_ndims, array_ndims, array);
array_fn!(array_prepend, array element);
array_fn!(array_push_front, array_prepend, array element);
array_fn!(list_prepend, array_prepend, array element);
array_fn!(list_push_front, array_prepend, array element);
array_fn!(array_prepend, element array);
array_fn!(array_push_front, array_prepend, element array);
array_fn!(list_prepend, array_prepend, element array);
array_fn!(list_push_front, array_prepend, element array);
array_fn!(array_pop_back, array);
array_fn!(array_pop_front, array);
array_fn!(array_remove, array element);
Expand Down

0 comments on commit 79f4459

Please sign in to comment.