vendor: add all of our dependencies

This commit is contained in:
Will Norris 2015-11-26 12:41:45 -08:00
parent d9e4cf282a
commit 69a7ccce71
39 changed files with 8202 additions and 0 deletions

17
vendor/github.com/petar/GoLLRB/llrb/util.go generated vendored Normal file
View file

@ -0,0 +1,17 @@
// Copyright 2010 Petar Maymounkov. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package llrb
type Int int
func (x Int) Less(than Item) bool {
return x < than.(Int)
}
type String string
func (x String) Less(than Item) bool {
return x < than.(String)
}