An open API service indexing awesome lists of open source software.

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.

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