Release a list back to the pool
void release(List<int> list) { if (_available.length < _maxPoolSize) { list.clear(); _available.add(list); } }