Trying to find the name for that API design anti pattern where a function has overloaded behaviors based on the argument type or value, but the distinction is riddled with error-prone ambiguities. Example: you can pass a list of values or just the value (but don't try to pass a value that's a list that way); you can pass any string, except when it's "default", something special happens (hopefully that never occurs in real data). Any pointers?
@pervognsen Yeah the latter one is really problematic. I think all of these patterns should have searing painful names that you can call out to discourage someone from practicing that style. Like, oh what you're doing there is False Overloading and it's _really_ bad, go read about it.