Marek Knápek@programming.dev to Programming@programming.dev · 2 years agoThe Little Things: The Missing Performance in std::vectorcodingnest.comexternal-linkmessage-square14fedilinkarrow-up156arrow-down12
arrow-up154arrow-down1external-linkThe Little Things: The Missing Performance in std::vectorcodingnest.comMarek Knápek@programming.dev to Programming@programming.dev · 2 years agomessage-square14fedilink
minus-squarerobinm@programming.devlinkfedilinkarrow-up1·2 years 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”.