Removes exactly `count` elements from the back of a slice or array, optionally specifying a dimension via template parameter `dim`.
auto ar = [3, 4, 5]; ar.popBackExactly(2); assert(ar == [3]); ar.popBackExactly!0(1); // Slice-like API assert(ar == []);
Removes exactly `count` elements from the back of a slice or array, optionally specifying a dimension via template parameter `dim`.