https://github.com/wsrer/go-ramda
Functional lab Ramda (https://ramdajs.com) implements in Go.
https://github.com/wsrer/go-ramda
functional-programming go
Last synced: 2 months ago
JSON representation
Functional lab Ramda (https://ramdajs.com) implements in Go.
- Host: GitHub
- URL: https://github.com/wsrer/go-ramda
- Owner: wsrer
- License: mit
- Archived: true
- Created: 2022-12-17T09:05:27.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-31T11:43:11.000Z (about 3 years ago)
- Last Synced: 2026-01-12T02:35:15.198Z (2 months ago)
- Topics: functional-programming, go
- Language: Go
- Homepage:
- Size: 65.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Install
```shell
go get github.com/nanakura/go-ramda@latest
```
# UseCase
```go
package main
import (
"fmt"
"github.com/nanakura/go-ramda"
)
func main() {
fmt.Println(ramda.Map(ramda.Multiply(2))([]int{2, 5, 10, 100})) // [4 10 20 200]
}
```
# Document
[go-ramda Wiki](https://github.com/nanakura/go-ramda/wiki)
# License
MIT