Skip to content

Instantly share code, notes, and snippets.

View SuckSolace's full-sized avatar
🎆
Focusing

SuckSolace

🎆
Focusing
View GitHub Profile
@SuckSolace
SuckSolace / C++ normal operators.md
Created March 15, 2023 14:55 — forked from beached/C++ normal operators.md
A list of the normal signatures of C++ operators that allow overloading

C++ Operator Signatures

This is a list of C++ operators that can be overloaded and their normal signatures(a.k.a what an int would do). The order is the preffered order to use them(The first one listed is often preffered)

Arithmetic

operator+ addition

  • free function -> T operator+( T const & lhs, T const & rhs )
  • member function -> T operator+( T const & rhs ) const

operator+ unary plus

  • member function -> T operator+( ) const