Sha256: 930338c41bf8af516cca9932c1b305a797a7a7bf70018d7545b53bef8b28b7fc
Contents?: true
Size: 1013 Bytes
Versions: 13
Compression:
Stored size: 1013 Bytes
Contents
/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */ /* * Copyright 2020-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. */ #pragma once #include <type_traits> namespace couchbase::core::operations { template<typename T> struct is_compound_operation : public std::false_type { }; template<typename T> inline constexpr bool is_compound_operation_v = is_compound_operation<T>::value; } // namespace couchbase::core::operations
Version data entries
13 entries across 13 versions & 1 rubygems