This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
huia/packages/core/ok/result.huia
2018-09-11 18:40:17 +12:00

14 lines
226 B
Text

defimpl Result for: Ok, as: ->
def ok? as: -> true end
def error? as: -> false end
def <Any> ok as: ->
@value
end
def <Any> error as: ->
Huia::Primitive.panic("Attempt to access error from Ok")
end
end