github.com/cockroachdb/pebble@v1.1.2/sstable/comparer.go (about)

     1  // Copyright 2011 The LevelDB-Go and Pebble Authors. All rights reserved. Use
     2  // of this source code is governed by a BSD-style license that can be found in
     3  // the LICENSE file.
     4  
     5  package sstable
     6  
     7  import "github.com/cockroachdb/pebble/internal/base"
     8  
     9  // Compare exports the base.Compare type.
    10  type Compare = base.Compare
    11  
    12  // Equal exports the base.Equal type.
    13  type Equal = base.Equal
    14  
    15  // AbbreviatedKey exports the base.AbbreviatedKey type.
    16  type AbbreviatedKey = base.AbbreviatedKey
    17  
    18  // Separator exports the base.Separator type.
    19  type Separator = base.Separator
    20  
    21  // Successor exports the base.Successor type.
    22  type Successor = base.Successor
    23  
    24  // Split exports the base.Split type.
    25  type Split = base.Split
    26  
    27  // Comparer exports the base.Comparer type.
    28  type Comparer = base.Comparer
    29  
    30  // DefaultComparer exports the base.DefaultComparer variable.
    31  var DefaultComparer = base.DefaultComparer
    32  
    33  // Merger exports the base.Merger type.
    34  type Merger = base.Merger