in reply to Names of attribute accessors (Moose)
TIMTOWTDI... e.g. in Java naming getters and setters is typically done in camelCase, e.g. getFoo and setFoo, whereas in Perl it's a bit more common to use one method and the parameter count to distinguish between getter and setter, e.g. foo (get) and foo($newValue) (get and set). get_foo and set_foo is fine too though, just more typing.