Hello,
In order to simplify the number of manipulation, I created a REC that contains all my functions.
Its more simple too when i want to create a replicate. But the problem is when i don’t want all my functions be implemented when i instanciate a replicate.
The only solution i fond for the moment is to locate all the REPL in a package and delete those i don’t want.
But when i make som update of REPL from REC i must take care to don’t add the function i already delete.
Does exist an other way to implement a partial part of a REC?
I’m interested if you learned anything new since making this post, because I have a similar need. It would be nice to be able to instantiate parts of a library or REC, it offers more flexibility in how you re-use objects without a ton of maintenance.
As far as I can tell, you must include all objects in an REC when you instantiate an RPL. So far the best solution I’ve come up with is to create a unique REC within the library for each condition you want to replicate, which sounds like the scenario you are trying to avoid.
For the moment i’haven’t any solution to solve this problem. But I’m still looking