add readme

This commit is contained in:
a 2022-03-26 20:56:03 -05:00
parent 2edaf2216d
commit a8fad03cc6
1 changed files with 84 additions and 0 deletions

84
readme.md Normal file
View File

@ -0,0 +1,84 @@
# lambda
package lambda provides tools for performing operations on generic array types
features:
features:
- Map [T] -> [T]
- MapV [T] -> [V]
- MapError [T] -> ([T], [error]
- MapErrorV [T] -> ([V], [error]
- Foldr [T] -> T
- Foldl [T] -> T
- Entries map[K]V -> ([K], [V])
- Flatten [[T]] -> [T]
- Merge ([T], [T]) -> [T]
- Split ([T], int) -> [[T]]
todo:
- idk
## parallel
subpackage parallel provides parallelized operations on generic array types
features:
- Map [T] -> [T]
- MapV [T] -> [V]
- MapError [T] -> ([T], [error]
- MapErrorV [T] -> ([V], [error]
todo:
- idk
example usage:
making a request
```
package main
import (
"encoding/json"
"fmt"
"log"
"net/http"
"git.tuxpa.in/a/lambda/parallel"
)
type someResult struct {
Title string `json:"title"`
Id int `json:"id"`
}
func main() {
var requests = make([]*http.Request, 20)
for i := range requests {
r, _ := http.NewRequest("GET", fmt.Sprintf("https://jsonplaceholder.typicode.com/todos/%d", i), nil)
requests[i] = r
}
results, errs := parallel.MapErrorV(requests, func(r *http.Request) (*someResult, error) {
out := &someResult{}
res, err := http.DefaultClient.Do(r)
if err != nil {
return nil, err
}
defer res.Body.Close()
err = json.NewDecoder(res.Body).Decode(out)
return out, err
}, 4)
for i, v := range results {
if errs[i] != nil {
log.Printf("err: %s", errs[i])
} else {
log.Printf("result: %+v", v)
}
}
}
```