[MECpp]Item-23 Consider Alternative Libraries
· β 2 min read
Different libraries offering similar functionality often feature different performance trade-offs, so we might be able to remove bottlenecks by replacing one library with another.
Different libraries offering similar functionality often feature different performance trade-offs, so we might be able to remove bottlenecks by replacing one library with another.
Assignment versions of operators (such as operator+=
) tend to be more efficient than stand-alone versions of those operators (e.g., operator+
).