integer-sorting/radix-sort

View on GitHub
src/array/core/alloc.js

Summary

Maintainability
A
0 mins
Test Coverage
// TODO check that this is the type that makes sense to hold counts
const alloc = (n) => new Int32Array(n);
export default alloc;