when creating a BitArray and initializing all of its value to 0 (via constructor, new BitArray(size, false);
) what is the time complexity of such operation? It's not in the docs about collections.
From reading other resources allocation in general seems to be non deterministic, but what about allocation with initial value of 0? is it guaranteed to be O(n)?