gust
gust copied to clipboard
A Rust-inspired declarative-programming and generic-type module for Golang that helps avoid bugs and improve development efficiency.
Results
2
gust issues
Sort by
recently updated
recently updated
newest added
For example if we have: - a variable `t` of type `Option[T]` - a function `fn` of type `func(T) S` And `t.Map(fn)` should be of type `Option[S]` . The `Map()`...
I have a question, why does the implementation of Option use a second level pointer? I have reviewed the implementation of the relevant methods, can using a first level pointer...