Sha256: ac7714bc329423c8e428bc5da20a39ff645b75a990054f014730c81c993f4f9f
Contents?: true
Size: 1.1 KB
Versions: 5
Compression:
Stored size: 1.1 KB
Contents
/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */ /* * Copyright 2022-Present Couchbase, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF * ANY KIND, either express or implied. See the License for the specific language governing * permissions and limitations under the License. */ #include "range_scan_options.hxx" #include "core/utils/binary.hxx" namespace couchbase::core { auto prefix_scan::to_range_scan() const -> range_scan { return { scan_term{ prefix, false }, scan_term{ prefix + "\xf4\x8f\xfb\xfb" } }; } auto range_scan_item_body::expiry_time() const -> std::chrono::system_clock::time_point { return std::chrono::system_clock::time_point(std::chrono::seconds{ expiry }); } } // namespace couchbase::core
Version data entries
5 entries across 5 versions & 1 rubygems