I have a large sequence of data-maps and each map needs to be classified in a nested fashion.
i.e. a given item may be an A or a B (as determined by a function), if it is a B then it may be a C or a D (determined by another function) and so on down. At each stage more data relating to the classification may be added to each map. The functions to do the classification are themselves quite complex and may need to bring in additional data to make the determinations.
Would a self-recursive multimethod be a good way to structure the code to do this? I would dispatch on the most specific type so far determined for an item, or return the best current classification when nothing further can be done.
I could get the desired effect with nested ifs inside a single classification function but gosh is that ugly.
Is a multimethod a good fit here or am I over-complicating things and missing a simpler way of structuring the code?