mirror of
https://github.com/willnorris/imageproxy.git
synced 2026-04-25 21:06:24 +02:00
vendor: add all of our dependencies
This commit is contained in:
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
17
vendor/github.com/petar/GoLLRB/llrb/util.go
generated
vendored
Normal 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)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue