Hello!
I've successfully ported my application from cells2.0 to Cells3. Cells3 looks very nice indeed. When needed, I've used c_? to delay evaluation and it worked great. However, I also have some observers defined with defobserver and I'd like them to be lazily evaluated because they depend on some not-yet-created instances. Is there a way to do this?
Josip Gracin wrote:
and it worked great. However, I also have some observers defined with defobserver and I'd like them to be lazily evaluated because they depend on some not-yet-created instances. Is there a way to do this?
Of course. Just define the observers after you've created all the instances. Oh well...
This does make the code layout uglier because I have to move all the defobservers to some file which will be loaded after all other files. Is there a better way to organize this?