Last active
June 30, 2021 14:45
-
-
Save JacobEvelyn/fba69b7c59f367910485082efe03e5c5 to your computer and use it in GitHub Desktop.
||= Ruby memoization
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Example | |
def slow_value | |
@slow_value ||= begin | |
... | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment