I often do the following:
@value = @value.some_method
But isn't there a shorter syntax for that in ruby? Some methods offer bang equivalents, but sadly not all...
For iterations one can use:
i += 1
Is that, or something similar, also available for my code snippet above?

some_methodhas asome_method!version that can mutate your@value, then, yes, you can do that. Ifsome_methodis something you wrote, then write a version. Without a lot more detail we can't give anything else but a very generic answer. – the Tin Man Jan 3 at 14:55selfwould raise exceptions left and right. We, as the programmer, selectively mutate objects where it's safe to do, not blindly expecting some magic to step in and protect us when we do something "really bad". – the Tin Man Jan 3 at 16:31