Skip to content

Update the array utils lib for GameMaker 2022.11

Latest
Compare
Choose a tag to compare
@JeffersonJales JeffersonJales released this 13 Dec 15:25
· 2 commits to master since this release
3637323

JSDoc Header improved

Renamed Functions

array_foreach_ext -> array_foreach_args
array_filter_ext -> array_filter_args
array_map_ext -> array_map_args
array_some_ext -> array_any_args
array_every_ext -> array_all_args
array_find_index -> array_find_index_simple

Functions removed

Without meaningful usage

array_index_convert

There are similar native functions with the other name

array_some (array_any)
array_every (array_all)
array_merge (array_concat)

There are similar native functions with the same name

array_unique
array_reverse
array_intersection
array_foreach
array_map
array_filter
array_reduce