Hey you coders
Nov. 25th, 2006 11:58 am![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
These questions aren't language-specific; consider the questions as pseudocode. Pretend that the underscores are actually studlyCaps if you'd like.
Also, don't worry about return values of the mutators, which is a separate question.
[Poll #875101]
Also, don't worry about return values of the mutators, which is a separate question.
[Poll #875101]
no subject
Date: 2006-11-25 09:50 pm (UTC)(foo object)
and(setf (foo object) new-foo-value)
, which I've also started to use in Scheme dialects that have extensibleset!
(like Swindle). But since Scheme is a Lisp1 instead of a Lisp2, it does sometimes get in the way when you want to have a variable with the same name as an accessor function. I haven't decided yet if this matters enough.no subject
Date: 2006-11-25 09:52 pm (UTC)(setf (foo object) new-foo-value)
is pretty much equivalent to theobject.foo = new_foo_value
that