I'm sending a reply to a request over a chan X
, where X
is a struct. The request is a search operation, so ideally I'd like to be able to return either an X
, or report it wasn't found.
This would be a task for a Maybe X
in Haskell or an x option
in OCaml. Is there any decent way to do this in Go? I'm not returning a pointer (as the original object I'm returning might be modified later), so I can't just return nil
.
Edit: right now I'm making it a chan interface{}
and either sending an X
or nil
, but this is ugly and defeats type-safety.
I use the pointer type, where:
Maybe X
= *X
Nothing
= nil
Just x
= &x
If you're using interface {}
you're effectively returning a pointer now. Why not change interface {}
to *X
and make sure to return a copy of the object? If I understand your reasoning behind not using a chan *X
, that is.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With