Added all required dependencies

This commit is contained in:
Thomas Boerger 2016-11-03 23:16:01 +01:00
parent 78f86abba4
commit 1ebb35b988
No known key found for this signature in database
GPG key ID: 5A388F55283960B6
660 changed files with 502447 additions and 0 deletions

44
vendor/github.com/go-xorm/builder/cond_not.go generated vendored Normal file
View file

@ -0,0 +1,44 @@
package builder
import "fmt"
type Not [1]Cond
var _ Cond = Not{}
func (not Not) WriteTo(w Writer) error {
if _, err := fmt.Fprint(w, "NOT "); err != nil {
return err
}
switch not[0].(type) {
case condAnd, condOr:
if _, err := fmt.Fprint(w, "("); err != nil {
return err
}
}
if err := not[0].WriteTo(w); err != nil {
return err
}
switch not[0].(type) {
case condAnd, condOr:
if _, err := fmt.Fprint(w, ")"); err != nil {
return err
}
}
return nil
}
func (not Not) And(conds ...Cond) Cond {
return And(not, And(conds...))
}
func (not Not) Or(conds ...Cond) Cond {
return Or(not, Or(conds...))
}
func (not Not) IsValid() bool {
return not[0] != nil && not[0].IsValid()
}