Lets say I have a function which takes some input structure and returns some output structure (which may be related to but different to the input structure).
I don't want to enforce these input/output structures to a particular type, I just want to ensure they have a few behaviors that I need.
Should I?
a) Define a class which has the appropriate extraction methods and force the input data to be an instance of that class? OR
b) Have the function accept another parameter which is function(s) that define how one extracts data.
Also I have the same question for the output structures (except this time the required functionality is mutation)?
