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
Basically a std::vector but with a fixed capacity given at runtime to the constructor.
The implementation could leverage std::vector but add checks to enforce that capacity never changes (throw appropriate exceptions if that would happen). This will leave some redundant checks in the underlying std::vector, but that seems to be bearable for now.
The text was updated successfully, but these errors were encountered:
Basically a
std::vector
but with a fixed capacity given at runtime to the constructor.The implementation could leverage
std::vector
but add checks to enforce that capacity never changes (throw appropriate exceptions if that would happen). This will leave some redundant checks in the underlyingstd::vector
, but that seems to be bearable for now.The text was updated successfully, but these errors were encountered: