Place Operations with Same Name Together (POSNT)

Description:

Group operations that differ only by their parameter list together. Good to order from least number of parameters to most.

Example:

class POSNT {
    void operation () {}
    void function () {}
    void operation (int param) {} 
}