Now all we need is an _destruct lfun. :-)
/ Marcus Comstedt (ACROSS) (Hail Ilpalazzo!)
Previous text:
2003-04-16 02:26: Subject: Pointers/lvalues
If I understand you correctly, your `= lfun would imply that an assignment to a variable becomes dependent on the old value in it. That's not something I'd expect of an assignment; in my view an assignment operates on a variable, not the value in it. It'd make objects too slippery for my taste:
object x = a_fishy_object; ... x = a_nice_object; if (x->is_fishy_object) { werror ("Foo?\n"); x = 0; // Begone! if (objectp (x) && x->is_fishy_object) { werror ("Arrgh!\n"); destruct (x); // Die, sucker! } }
If lfuns could be added to variables then a `= would make sense.
Anyway, how would such a thing help simulating pass-by-reference on the calling side? Where would the object instance with the `= come from?
/ Martin Stjernholm, Roxen IS