good morning!!!!

Skip to content
Snippets Groups Projects
Commit 6a6097e9 authored by Carlos Nieto's avatar Carlos Nieto
Browse files

Changing definition of Remove() and Update().

parent 57e8be83
Branches
Tags
No related merge requests found
......@@ -214,10 +214,10 @@ type Collection interface {
type Result interface {
// Removes all items within the result set.
Remove()
Remove() error
// Updates all items within the result set.
Update(interface{})
Update(interface{}) error
// Counts all items within the result set.
Count() (int, error)
......@@ -246,7 +246,7 @@ type Result interface {
}
// Specifies which fields will be returned in a query.
// type Fields []string
type Fields []string
// These are internal variables.
//type MultiFlag bool
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment