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

15 lines
226 B
Text
Raw Normal View History

2018-09-01 11:44:59 +12:00
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: ->
2018-09-11 18:40:17 +12:00
Huia::Primitive.panic("Attempt to access error from Ok")
2018-09-01 11:44:59 +12:00
end
end