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
I have reviewed a set of files. We still have std.range and std.array are used frequently. The reasons to remove them:
Less template bloat with iota - iotaSlice uses size_t only and it is faster
Many usage cases can be improved with ndslice primitives.
ndslice does not require std.range and incorporates its funcitonality.
Maybe few cases with std.array can be still useful. But most of them are used for slice allocation
The text was updated successfully, but these errors were encountered:
I have reviewed a set of files. We still have
std.range
andstd.array
are used frequently. The reasons to remove them:ndslice does not require std.range and incorporates its funcitonality.
Maybe few cases with std.array can be still useful. But most of them are used for slice allocation
The text was updated successfully, but these errors were encountered: