Skip to content

Package stream provides filters that can be chained together in a manner similar to Unix pipelines.

License

Notifications You must be signed in to change notification settings

ghemawat/stream

Folders and files

NameName
Last commit message
Last commit date
Aug 18, 2014
Jul 10, 2014
Jul 21, 2016
Aug 16, 2014
Jul 31, 2014
Aug 16, 2014
Aug 7, 2014
Jul 30, 2014
Oct 28, 2017
Aug 18, 2014
Aug 18, 2014
Aug 3, 2014
Aug 7, 2014
Aug 18, 2014
Mar 21, 2015
Aug 16, 2014
Aug 18, 2014

Repository files navigation

Stream package

Package stream provides filters that can be chained together in a manner similar to Unix pipelines. A simple example that prints all go files under the current directory:

stream.Run(
	stream.Find("."),
	stream.Grep(`\.go$`),
	stream.WriteLines(os.Stdout),
)

Installation

go get github.com/ghemawat/stream

See godoc for further documentation and examples.

About

Package stream provides filters that can be chained together in a manner similar to Unix pipelines.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages