Skip to content

Releases: JeffersonJales/array_utils_gms2

Update the array utils lib for GameMaker 2022.11

13 Dec 15:25
3637323

Choose a tag to compare

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

Array Remove fixed

19 Mar 19:38

Choose a tag to compare

1.1.3

array_remove bug fix

More array functions and some better performance!

19 Mar 18:03

Choose a tag to compare

Updates from 1.0.0 to 1.1.2

  • Enhanced performance in array_reverse and array_shuffle (Thanks to Haerion, on GameMaker Kitchen discord server)

  • Added extended versions for some functions: array_map, array_filter, array_foreach, array_some, array_every.
    Now the extended version of these functions can receive more arguments, making those functions more usable.
    You can see examples on the array_wrapper_examples.yyz.

  • JSDoc Header revision. Making it a little easier to read.

Array utils gms2 release

13 Feb 19:48

Choose a tag to compare

1.0.0

JSDoc to all functions