From 6ee859ef9ceb8abf2f8ee429df9084e62911a808 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Carlos=20Nieto?= <jose.carlos@menteslibres.net> Date: Thu, 7 Aug 2014 11:23:32 -0500 Subject: [PATCH] Adding interface for grouping results by column (Group()). --- main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.go b/main.go index 44151672..d5490caf 100644 --- a/main.go +++ b/main.go @@ -297,6 +297,9 @@ type Result interface { // Discards the initial filtering conditions and sets new ones. Where(...interface{}) Result + // Groups results using a key. + Group(...interface{}) Result + // Removes all items within the result set. Remove() error -- GitLab