generated from devnw/oss-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocs.go
31 lines (31 loc) · 1.3 KB
/
docs.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Package stream provides a set of generic functions for working concurrent
// design patterns in Go.
//
// [](https://github.com/devnw/stream/actions)
// [](https://goreportcard.com/report/go.atomizer.io/stream)
// [](https://codecov.io/gh/devnw/stream)
// [](https://pkg.go.dev/go.atomizer.io/stream)
// [](https://opensource.org/licenses/Apache-2.0)
// [](http://makeapullrequest.com)
//
// ## Installation
//
// To install the package, run:
//
// go get -u go.atomizer.io/stream@latest
//
// ## Usage
//
// import "go.atomizer.io/stream"
//
// ## Benchmarks
//
// To execute the benchmarks, run the following command:
//
// go test -bench=. ./...
//
// To view benchmarks over time for the `main` branch of the repository they can
// be seen on our [Benchmark Report Card].
//
// [Benchmark Report Card]: https://devnw.github.io/stream/dev/bench/
package stream