Skip to content

julio77it/pipeline

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pipeline

Simple function pipe lining package

Go Report Card

	pipe, err := pipeline.Chain(
		f1,
		f2,
		f3,
	)
	if err != nil {
		fmt.Println(err)
		return
	}
	pipe.Process(input)

It uses a lot of the reflect package, if functions in the pipeline haven't compatibles arguments and return values you'll get panic

Reflection is never clear.

IMAGE ALT TEXT HERE

About

Simple function pipe lining package

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages