GOWSNT - Group Operations With Same Name Together
Enforces standard to improve readability.
Wrong
class GOWSNT {
void operation () {}
void function () {}
void operation (int param) {}
}
Tip:
Place operations with similar names and different signatures together.
Right
class GOWSNT {
void operation () {}
void operation (int param) {}
void function () {}
}