I have a procedure which accepts arguments of a (created by myself) type which are records, like so:
Subs:=proc(eqn::seq(equation),elemt::Element,$);
...
Here "Element" is type I have defined; it is a record with certain fields present.
My question: will this work with option remember? I have the procedure sort-of working without the remember option, but I need to make it work recursively (the Element record can have fields which contain names of other records of type Element...