Closed ufrshubham closed 4 years ago
Many of the operator overloads are taking in arguments by value. This will cause unnecessary copies of the objects. Better to convert them to const ref wherever possible.
Submitting a PR for this. @ayaankhan98 you can assign this to me.
Many of the operator overloads are taking in arguments by value. This will cause unnecessary copies of the objects. Better to convert them to const ref wherever possible.