groupers.go 源码
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
// For more tutorials : https://learngoprogramming.com
// In-person training : https://www.linkedin.com/in/inancgumus/
// Follow me on twitter: https://twitter.com/inancgumus
package pipe
// DomainGrouper groups the records by domain.
// It keeps the other fields intact.
// For example: It returns the page field as well.
// Exercise: Write a solution that removes the unnecessary data.
func DomainGrouper(r Record) string {
return r.domain
}
// Page groups records by page.
func Page(r Record) string {
return r.domain + r.page
}
你可能感兴趣的文章
go record
go filter
go textreport
go filters
go pipe
go close
go jsonreport
go jsonlog
go group
go pipeline