Skip to content

Instantly share code, notes, and snippets.

View shepgoba's full-sized avatar

Braxton Anderson shepgoba

View GitHub Profile
@beached
beached / C++ normal operators.md
Last active May 9, 2025 19:42
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