Created
May 31, 2024 21:56
-
-
Save havenwood/d02e7c15fbdb15ddcfe21fd10cb56901 to your computer and use it in GitHub Desktop.
An example showing that #coerce can be private.
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
Value = Data.define(:number) do | |
def +(other) = with(number: number + other.number) | |
private | |
def coerce(number) = [Value.new(number), self] | |
end | |
42 + Value.new(42) | |
#=> #<data Value number=84> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment