Skip to content

Instantly share code, notes, and snippets.

View SuckSolace's full-sized avatar
🎆
Focusing

SuckSolace

🎆
Focusing
View GitHub Profile
@beached
beached / C++ normal operators.md
Last active August 11, 2025 02:50
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
## Useful Commands
Get kubectl version
kubectl version
Get cluster info: