What\'s better practice when defining several methods that return the same shape of data with different filters? Explicit method names or overloaded methods?
As far as I can tell, you won't have fewer methods, just fewer names. I generally prefer the overloaded method system of naming, but I don't think it really makes much difference as long as you comment and document your code well (which you should do in either case).