folly: replace old-style header guards with "pragma once"
[folly.git] / folly / portability / Constexpr.h
1 /*
2  * Copyright 2016 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #pragma once
18
19 #include <cstdint>
20 #include <cstring>
21
22 namespace folly {
23
24 template <typename T>
25 constexpr T constexpr_max(T a, T b) {
26   return a > b ? a : b;
27 }
28
29 template <typename T>
30 constexpr T constexpr_min(T a, T b) {
31   return a < b ? a : b;
32 }
33
34 #ifdef _MSC_VER
35 constexpr size_t constexpr_strlen_internal(const char* s, size_t len) {
36   return *s == '\0' ? len : constexpr_strlen_internal(s + 1, len + 1);
37 }
38 static_assert(constexpr_strlen_internal("123456789", 0) == 9,
39               "Someone appears to have broken constexpr_strlen...");
40 #endif
41
42 constexpr size_t constexpr_strlen(const char* s) {
43 #if defined(__clang__)
44   return __builtin_strlen(s);
45 #elif defined(_MSC_VER)
46   return s == nullptr ? 0 : constexpr_strlen_internal(s, 0);
47 #else
48   return std::strlen(s);
49 #endif
50 }
51 }