I don’t want to overly generalise because there aren’t such things as absolutes with programming. But this was the thinking behind my comment:
If you have dozens of methods then that might be an indicator that your object is too large in size and thus consumes too much memory even for simple tasks.
It also might be a symptom that you’re trying to do too much with that object so perhaps some methods should be generalised, if possible.
Or maybe the object is already too generalised and what you actually need is a more specific object that inherits some of the initial objects design?
It might be that some of those methods should have been private, or even functions.
Ultimately, it could be an indicator that the object is either badly designed or has evolved to the point that it’s now ready for a refactor.
But it could also be the most optimal way to approach that problem too. In some situations. However it’s a good point to pause and reflect on whether the pain/reward threshold has been crossed.