Hi all, Im not sure if this was ever discussed before (couldnt find anything):
There is no arrayutils in std-lib because most procs/templates from sequtils just work for arrays, because of use of openarray. The only exception is map and mapIt (it works but not in the way a map-func normaly works, because its result is a seq not an array) so I find myself in a situation where I have written my own map and mapIt for arrays in multiple projects. Now my question is, should I add an arrayutils package on nimble with just those 2 procs/templates, or should this actually be part of the standard lib?