You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem or challenge?
Currently, the array_slice function only accepts three arguments: the array, from, and to. However, it would be more convenient if it also supported a stride parameter.
Expect result
array_slice([1, 2, 3, 4], 1, 3, 2) --> [1, 3]
Describe the solution you'd like
No response
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem or challenge?
Currently, the
array_slice
function only accepts three arguments: thearray
,from
, andto
. However, it would be more convenient if it also supported astride
parameter.Expect result
Describe the solution you'd like
No response
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: