by Carl Ranson >> Thu, 7 Oct 1999 20:49:20 GMT
Hi All,
Say I have a property that is used as a key or keypath.
Is jade smart enough that setting this property to its current value will not cause an update on the dictionaries
or should one write
if prop <> valueToSet then
prop := valueToSet;
endif;
to avoid the redundant updates.
CR