package
3.8.0+incompatible
Repository: https://github.com/azylman/getl.git
Documentation: pkg.go.dev

# README

discard

-- import "gopkg.in/Clever/optimus.v3/sinks/discard"

Usage

var Discard = func(t optimus.Table) error {
	for _ = range t.Rows() {
	}
	return t.Err()
}

Discard is a Sink that discards all the Rows in the Table and returns any error.