aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/util/range.go
blob: da0583123a0cb961307a1b3e5a930511aacbb4ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) 2014, Suryandaru Triandana <syndtr@gmail.com>
// All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package util

// Range is a key range.
type Range struct {
    // Start of the key range, include in the range.
    Start []byte

    // Limit of the key range, not include in the range.
    Limit []byte
}