/Users/deen/code/yugabyte-db/src/yb/docdb/key_bounds.cc
Line | Count | Source (jump to first uncovered line) |
1 | | // Copyright (c) YugaByte, Inc. |
2 | | // |
3 | | // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
4 | | // in compliance with the License. You may obtain a copy of the License at |
5 | | // |
6 | | // http://www.apache.org/licenses/LICENSE-2.0 |
7 | | // |
8 | | // Unless required by applicable law or agreed to in writing, software distributed under the License |
9 | | // is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
10 | | // or implied. See the License for the specific language governing permissions and limitations |
11 | | // under the License. |
12 | | // |
13 | | |
14 | | #include "yb/docdb/key_bounds.h" |
15 | | |
16 | | #include "yb/util/tostring.h" |
17 | | |
18 | | namespace yb { |
19 | | namespace docdb { |
20 | | |
21 | | const KeyBounds KeyBounds::kNoBounds; |
22 | | |
23 | 0 | std::string KeyBounds::ToString() const { |
24 | 0 | return YB_STRUCT_TO_STRING(lower, upper); |
25 | 0 | } |
26 | | |
27 | 95.3M | bool IsWithinBounds(const KeyBounds* key_bounds, const Slice& key) { |
28 | 95.3M | return !key_bounds || key_bounds->IsWithinBounds(key)95.3M ; |
29 | 95.3M | } |
30 | | |
31 | | } // namespace docdb |
32 | | } // namespace yb |