go_chainable
functional-go
go_chainable | functional-go | |
---|---|---|
2 | 4 | |
124 | 181 | |
0.0% | 0.0% | |
0.0 | 5.9 | |
about 3 years ago | over 1 year ago | |
Go | Go | |
MIT License | Apache License 2.0 |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
go_chainable
functional-go
- functional-go/internal/generatefp.go
-
Go 1.18 Released
>> By introducing a single generic, you could reduce it from 500 lines to 20
No one is writing 500 lines of code - just as when you use the generics syntax you don’t write the code that is generated by the compiler in response.
You could save about 10 lines, specifically these 10:
https://github.com/logic-building/functional-go/blob/master/...
You would still need the comparable ~40 lines of “generic” code:
https://github.com/logic-building/functional-go/blob/master/...
-
Do you see any interesting use cases for the upcoming type sets, other than generic type constraints?
Yes! There is this library that uses go generate for achieving functional patterns https://github.com/logic-building/functional-go. It would really benefit from such thing.
What are some alternatives?
proposal - Go Project Design Documents
fp-go - fp-go is a collection of Functional Programming helpers powered by Golang 1.18+ generics.
go-generic-optional - Implementation of Optionals in Go using Generics
gtl - Golang Template Library (GTL). Common data structures using Golang generics.
lo - 💥 A Lodash-style Go library based on Go 1.18+ Generics (map, filter, contains, find...)