Marek Knápek@programming.dev to Programming@programming.dev · 1 year agoThe Little Things: The Missing Performance in std::vectorcodingnest.comexternal-linkmessage-square11fedilinkarrow-up156arrow-down12
arrow-up154arrow-down1external-linkThe Little Things: The Missing Performance in std::vectorcodingnest.comMarek Knápek@programming.dev to Programming@programming.dev · 1 year agomessage-square11fedilink
minus-squarerobinm@programming.devlinkfedilinkarrow-up1·1 year agoemplace controls the construction of the object added to the collection. It’s also important but not related to the problem exposed by OP which is “how to remove the capacity check when we know statically that there is enough space”.
emplace
controls the construction of the object added to the collection. It’s also important but not related to the problem exposed by OP which is “how to remove the capacity check when we know statically that there is enough space”.