Skip to content

Instantly share code, notes, and snippets.

@havenwood
Created May 31, 2024 21:56
Show Gist options
  • Save havenwood/d02e7c15fbdb15ddcfe21fd10cb56901 to your computer and use it in GitHub Desktop.
Save havenwood/d02e7c15fbdb15ddcfe21fd10cb56901 to your computer and use it in GitHub Desktop.
An example showing that #coerce can be private.
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