Entry tags:
Hey you coders
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
(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
(setf (foo object) new-foo-value)
is pretty much equivalent to theobject.foo = new_foo_value
that