Description
After reviewing the array utility types, I noticed that they use an extra argument called Build, which is used to add or append values and then simply return them.
However, this argument is unnecessary — the same behavior can be achieved without it, simplifying the utility types and avoiding the creation of extra arguments.
Please review the array utility types and clean them up accordingly.
Description
After reviewing the array utility types, I noticed that they use an extra argument called
Build, which is used to add or append values and then simply return them.However, this argument is unnecessary — the same behavior can be achieved without it, simplifying the utility types and avoiding the creation of extra arguments.
Please review the array utility types and clean them up accordingly.