bf8d4b4cbc3dc0d665459500f9e13658a6d4f7ae
[folly.git] / folly / Traits.h
1 /*
2  * Copyright 2017 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 // @author: Andrei Alexandrescu
18
19 #pragma once
20
21 #include <functional>
22 #include <limits>
23 #include <memory>
24 #include <type_traits>
25
26 #include <folly/Portability.h>
27
28 // libc++ doesn't provide this header, nor does msvc
29 #ifdef FOLLY_HAVE_BITS_CXXCONFIG_H
30 // This file appears in two locations: inside fbcode and in the
31 // libstdc++ source code (when embedding fbstring as std::string).
32 // To aid in this schizophrenic use, two macros are defined in
33 // c++config.h:
34 //   _LIBSTDCXX_FBSTRING - Set inside libstdc++.  This is useful to
35 //      gate use inside fbcode v. libstdc++
36 #include <bits/c++config.h>
37 #endif
38
39 #define FOLLY_CREATE_HAS_MEMBER_TYPE_TRAITS(classname, type_name)              \
40   template <typename TTheClass_>                                               \
41   struct classname##__folly_traits_impl__ {                                    \
42     template <typename UTheClass_>                                             \
43     static constexpr bool test(typename UTheClass_::type_name*) {              \
44       return true;                                                             \
45     }                                                                          \
46     template <typename>                                                        \
47     static constexpr bool test(...) {                                          \
48       return false;                                                            \
49     }                                                                          \
50   };                                                                           \
51   template <typename TTheClass_>                                               \
52   using classname = typename std::conditional<                                 \
53       classname##__folly_traits_impl__<TTheClass_>::template test<TTheClass_>( \
54           nullptr),                                                            \
55       std::true_type,                                                          \
56       std::false_type>::type;
57
58 #define FOLLY_CREATE_HAS_MEMBER_FN_TRAITS_IMPL(classname, func_name, cv_qual) \
59   template <typename TTheClass_, typename RTheReturn_, typename... TTheArgs_> \
60   struct classname##__folly_traits_impl__<                                    \
61       TTheClass_,                                                             \
62       RTheReturn_(TTheArgs_...) cv_qual> {                                    \
63     template <                                                                \
64         typename UTheClass_,                                                  \
65         RTheReturn_ (UTheClass_::*)(TTheArgs_...) cv_qual>                    \
66     struct sfinae {};                                                         \
67     template <typename UTheClass_>                                            \
68     static std::true_type test(sfinae<UTheClass_, &UTheClass_::func_name>*);  \
69     template <typename>                                                       \
70     static std::false_type test(...);                                         \
71   }
72
73 /*
74  * The FOLLY_CREATE_HAS_MEMBER_FN_TRAITS is used to create traits
75  * classes that check for the existence of a member function with
76  * a given name and signature. It currently does not support
77  * checking for inherited members.
78  *
79  * Such classes receive two template parameters: the class to be checked
80  * and the signature of the member function. A static boolean field
81  * named `value` (which is also constexpr) tells whether such member
82  * function exists.
83  *
84  * Each traits class created is bound only to the member name, not to
85  * its signature nor to the type of the class containing it.
86  *
87  * Say you need to know if a given class has a member function named
88  * `test` with the following signature:
89  *
90  *    int test() const;
91  *
92  * You'd need this macro to create a traits class to check for a member
93  * named `test`, and then use this traits class to check for the signature:
94  *
95  * namespace {
96  *
97  * FOLLY_CREATE_HAS_MEMBER_FN_TRAITS(has_test_traits, test);
98  *
99  * } // unnamed-namespace
100  *
101  * void some_func() {
102  *   cout << "Does class Foo have a member int test() const? "
103  *     << boolalpha << has_test_traits<Foo, int() const>::value;
104  * }
105  *
106  * You can use the same traits class to test for a completely different
107  * signature, on a completely different class, as long as the member name
108  * is the same:
109  *
110  * void some_func() {
111  *   cout << "Does class Foo have a member int test()? "
112  *     << boolalpha << has_test_traits<Foo, int()>::value;
113  *   cout << "Does class Foo have a member int test() const? "
114  *     << boolalpha << has_test_traits<Foo, int() const>::value;
115  *   cout << "Does class Bar have a member double test(const string&, long)? "
116  *     << boolalpha << has_test_traits<Bar, double(const string&, long)>::value;
117  * }
118  *
119  * @author: Marcelo Juchem <marcelo@fb.com>
120  */
121 #define FOLLY_CREATE_HAS_MEMBER_FN_TRAITS(classname, func_name)               \
122   template <typename, typename>                                               \
123   struct classname##__folly_traits_impl__;                                    \
124   FOLLY_CREATE_HAS_MEMBER_FN_TRAITS_IMPL(classname, func_name, );             \
125   FOLLY_CREATE_HAS_MEMBER_FN_TRAITS_IMPL(classname, func_name, const);        \
126   FOLLY_CREATE_HAS_MEMBER_FN_TRAITS_IMPL(                                     \
127       classname, func_name, /* nolint */ volatile);                           \
128   FOLLY_CREATE_HAS_MEMBER_FN_TRAITS_IMPL(                                     \
129       classname, func_name, /* nolint */ volatile const);                     \
130   template <typename TTheClass_, typename TTheSignature_>                     \
131   using classname =                                                           \
132       decltype(classname##__folly_traits_impl__<TTheClass_, TTheSignature_>:: \
133                    template test<TTheClass_>(nullptr))
134
135 namespace folly {
136
137 /***
138  *  _t
139  *
140  *  Instead of:
141  *
142  *    using decayed = typename std::decay<T>::type;
143  *
144  *  With the C++14 standard trait aliases, we could use:
145  *
146  *    using decayed = std::decay_t<T>;
147  *
148  *  Without them, we could use:
149  *
150  *    using decayed = _t<std::decay<T>>;
151  *
152  *  Also useful for any other library with template types having dependent
153  *  member types named `type`, like the standard trait types.
154  */
155 template <typename T>
156 using _t = typename T::type;
157
158 /**
159  *  void_t
160  *
161  *  A type alias for `void`. `void_t` is useful for controling class-template
162  *  partial specialization.
163  *
164  *  Example:
165  *
166  *    // has_value_type<T>::value is true if T has a nested type `value_type`
167  *    template <class T, class = void>
168  *    struct has_value_type
169  *        : std::false_type {};
170  *
171  *    template <class T>
172  *    struct has_value_type<T, folly::void_t<typename T::value_type>>
173  *        : std::true_type {};
174  */
175 #if defined(__cpp_lib_void_t) || defined(_MSC_VER)
176
177 /* using override */ using std::void_t;
178
179 #else // defined(__cpp_lib_void_t) || defined(_MSC_VER)
180
181 namespace traits_detail {
182 template <class...>
183 struct void_t_ {
184   using type = void;
185 };
186 } // namespace traits_detail
187
188 template <class... Ts>
189 using void_t = _t<traits_detail::void_t_<Ts...>>;
190
191 #endif // defined(__cpp_lib_void_t) || defined(_MSC_VER)
192
193 /**
194  * IsRelocatable<T>::value describes the ability of moving around
195  * memory a value of type T by using memcpy (as opposed to the
196  * conservative approach of calling the copy constructor and then
197  * destroying the old temporary. Essentially for a relocatable type,
198  * the following two sequences of code should be semantically
199  * equivalent:
200  *
201  * void move1(T * from, T * to) {
202  *   new(to) T(from);
203  *   (*from).~T();
204  * }
205  *
206  * void move2(T * from, T * to) {
207  *   memcpy(to, from, sizeof(T));
208  * }
209  *
210  * Most C++ types are relocatable; the ones that aren't would include
211  * internal pointers or (very rarely) would need to update remote
212  * pointers to pointers tracking them. All C++ primitive types and
213  * type constructors are relocatable.
214  *
215  * This property can be used in a variety of optimizations. Currently
216  * fbvector uses this property intensively.
217  *
218  * The default conservatively assumes the type is not
219  * relocatable. Several specializations are defined for known
220  * types. You may want to add your own specializations. Do so in
221  * namespace folly and make sure you keep the specialization of
222  * IsRelocatable<SomeStruct> in the same header as SomeStruct.
223  *
224  * You may also declare a type to be relocatable by including
225  *    `typedef std::true_type IsRelocatable;`
226  * in the class header.
227  *
228  * It may be unset in a base class by overriding the typedef to false_type.
229  */
230 /*
231  * IsTriviallyCopyable describes the value semantics property. C++11 contains
232  * the type trait is_trivially_copyable; however, it is not yet implemented
233  * in gcc (as of 4.7.1), and the user may wish to specify otherwise.
234  */
235 /*
236  * IsZeroInitializable describes the property that default construction is the
237  * same as memset(dst, 0, sizeof(T)).
238  */
239
240 namespace traits_detail {
241
242 #define FOLLY_HAS_TRUE_XXX(name)                                             \
243   FOLLY_CREATE_HAS_MEMBER_TYPE_TRAITS(has_##name, name);                     \
244   template <class T>                                                         \
245   struct name##_is_true : std::is_same<typename T::name, std::true_type> {}; \
246   template <class T>                                                         \
247   struct has_true_##name : std::conditional<                                 \
248                                has_##name<T>::value,                         \
249                                name##_is_true<T>,                            \
250                                std::false_type>::type {};
251
252 FOLLY_HAS_TRUE_XXX(IsRelocatable)
253 FOLLY_HAS_TRUE_XXX(IsZeroInitializable)
254 FOLLY_HAS_TRUE_XXX(IsTriviallyCopyable)
255
256 #undef FOLLY_HAS_TRUE_XXX
257
258 // Older versions of libstdc++ do not provide std::is_trivially_copyable
259 #if defined(__clang__) && !defined(_LIBCPP_VERSION)
260 template <class T>
261 struct is_trivially_copyable
262     : std::integral_constant<bool, __is_trivially_copyable(T)> {};
263 #elif defined(__GNUC__) && !defined(__clang__) && __GNUC__ < 5
264 template <class T>
265 struct is_trivially_copyable : std::is_trivial<T> {};
266 #else
267 template <class T>
268 using is_trivially_copyable = std::is_trivially_copyable<T>;
269 #endif
270 }
271
272 struct Ignore {
273   template <class T>
274   /* implicit */ Ignore(const T&) {}
275   template <class T>
276   const Ignore& operator=(T const&) const { return *this; }
277 };
278
279 template <class...>
280 using Ignored = Ignore;
281
282 namespace traits_detail_IsEqualityComparable {
283 Ignore operator==(Ignore, Ignore);
284
285 template <class T, class U = T>
286 struct IsEqualityComparable
287     : std::is_convertible<
288           decltype(std::declval<T>() == std::declval<U>()),
289           bool
290       > {};
291 }
292
293 /* using override */ using traits_detail_IsEqualityComparable::
294     IsEqualityComparable;
295
296 namespace traits_detail_IsLessThanComparable {
297 Ignore operator<(Ignore, Ignore);
298
299 template <class T, class U = T>
300 struct IsLessThanComparable
301     : std::is_convertible<
302           decltype(std::declval<T>() < std::declval<U>()),
303           bool
304       > {};
305 }
306
307 /* using override */ using traits_detail_IsLessThanComparable::
308     IsLessThanComparable;
309
310 namespace traits_detail_IsNothrowSwappable {
311 #if defined(__cpp_lib_is_swappable) || (_CPPLIB_VER && _HAS_CXX17)
312 // MSVC 2015+ already implements the C++17 P0185R1 proposal which
313 // adds std::is_nothrow_swappable, so use it instead if C++17 mode
314 // is enabled.
315 template <typename T>
316 using IsNothrowSwappable = std::is_nothrow_swappable<T>;
317 #elif _CPPLIB_VER
318 // MSVC 2015+ defines the base even if C++17 is disabled, and
319 // MSVC 2015 has issues with our fallback implementation due to
320 // over-eager evaluation of noexcept.
321 template <typename T>
322 using IsNothrowSwappable = std::_Is_nothrow_swappable<T>;
323 #else
324 /* using override */ using std::swap;
325
326 template <class T>
327 struct IsNothrowSwappable
328     : std::integral_constant<bool,
329         std::is_nothrow_move_constructible<T>::value &&
330         noexcept(swap(std::declval<T&>(), std::declval<T&>()))
331       > {};
332 #endif
333 }
334
335 /* using override */ using traits_detail_IsNothrowSwappable::IsNothrowSwappable;
336
337 template <class T> struct IsTriviallyCopyable
338   : std::conditional<
339       traits_detail::has_IsTriviallyCopyable<T>::value,
340       traits_detail::has_true_IsTriviallyCopyable<T>,
341       traits_detail::is_trivially_copyable<T>
342     >::type {};
343
344 template <class T> struct IsRelocatable
345   : std::conditional<
346       traits_detail::has_IsRelocatable<T>::value,
347       traits_detail::has_true_IsRelocatable<T>,
348       // TODO add this line (and some tests for it) when we upgrade to gcc 4.7
349       //std::is_trivially_move_constructible<T>::value ||
350       IsTriviallyCopyable<T>
351     >::type {};
352
353 template <class T> struct IsZeroInitializable
354   : std::conditional<
355       traits_detail::has_IsZeroInitializable<T>::value,
356       traits_detail::has_true_IsZeroInitializable<T>,
357       std::integral_constant<bool, !std::is_class<T>::value>
358     >::type {};
359
360 template <typename...>
361 struct Conjunction : std::true_type {};
362 template <typename T>
363 struct Conjunction<T> : T {};
364 template <typename T, typename... TList>
365 struct Conjunction<T, TList...>
366     : std::conditional<T::value, Conjunction<TList...>, T>::type {};
367
368 template <typename...>
369 struct Disjunction : std::false_type {};
370 template <typename T>
371 struct Disjunction<T> : T {};
372 template <typename T, typename... TList>
373 struct Disjunction<T, TList...>
374     : std::conditional<T::value, T, Disjunction<TList...>>::type {};
375
376 template <typename T>
377 struct Negation : std::integral_constant<bool, !T::value> {};
378
379 template <bool... Bs>
380 struct Bools {
381   using valid_type = bool;
382   static constexpr std::size_t size() {
383     return sizeof...(Bs);
384   }
385 };
386
387 // Lighter-weight than Conjunction, but evaluates all sub-conditions eagerly.
388 template <class... Ts>
389 struct StrictConjunction 
390   : std::is_same<Bools<Ts::value...>, Bools<(Ts::value || true)...>> {};
391
392 template <class... Ts>
393 struct StrictDisjunction 
394   : Negation<
395       std::is_same<Bools<Ts::value...>, Bools<(Ts::value && false)...>>
396     > {};
397
398 } // namespace folly
399
400 /**
401  * Use this macro ONLY inside namespace folly. When using it with a
402  * regular type, use it like this:
403  *
404  * // Make sure you're at namespace ::folly scope
405  * template <> FOLLY_ASSUME_RELOCATABLE(MyType)
406  *
407  * When using it with a template type, use it like this:
408  *
409  * // Make sure you're at namespace ::folly scope
410  * template <class T1, class T2>
411  * FOLLY_ASSUME_RELOCATABLE(MyType<T1, T2>)
412  */
413 #define FOLLY_ASSUME_RELOCATABLE(...) \
414   struct IsRelocatable<  __VA_ARGS__ > : std::true_type {};
415
416 /**
417  * The FOLLY_ASSUME_FBVECTOR_COMPATIBLE* macros below encode the
418  * assumption that the type is relocatable per IsRelocatable
419  * above. Many types can be assumed to satisfy this condition, but
420  * it is the responsibility of the user to state that assumption.
421  * User-defined classes will not be optimized for use with
422  * fbvector (see FBVector.h) unless they state that assumption.
423  *
424  * Use FOLLY_ASSUME_FBVECTOR_COMPATIBLE with regular types like this:
425  *
426  * FOLLY_ASSUME_FBVECTOR_COMPATIBLE(MyType)
427  *
428  * The versions FOLLY_ASSUME_FBVECTOR_COMPATIBLE_1, _2, _3, and _4
429  * allow using the macro for describing templatized classes with 1, 2,
430  * 3, and 4 template parameters respectively. For template classes
431  * just use the macro with the appropriate number and pass the name of
432  * the template to it. Example:
433  *
434  * template <class T1, class T2> class MyType { ... };
435  * ...
436  * // Make sure you're at global scope
437  * FOLLY_ASSUME_FBVECTOR_COMPATIBLE_2(MyType)
438  */
439
440 // Use this macro ONLY at global level (no namespace)
441 #define FOLLY_ASSUME_FBVECTOR_COMPATIBLE(...) \
442   namespace folly {                           \
443   template <>                                 \
444   FOLLY_ASSUME_RELOCATABLE(__VA_ARGS__)       \
445   }
446 // Use this macro ONLY at global level (no namespace)
447 #define FOLLY_ASSUME_FBVECTOR_COMPATIBLE_1(...) \
448   namespace folly {                             \
449   template <class T1>                           \
450   FOLLY_ASSUME_RELOCATABLE(__VA_ARGS__<T1>)     \
451   }
452 // Use this macro ONLY at global level (no namespace)
453 #define FOLLY_ASSUME_FBVECTOR_COMPATIBLE_2(...) \
454   namespace folly {                             \
455   template <class T1, class T2>                 \
456   FOLLY_ASSUME_RELOCATABLE(__VA_ARGS__<T1, T2>) \
457   }
458 // Use this macro ONLY at global level (no namespace)
459 #define FOLLY_ASSUME_FBVECTOR_COMPATIBLE_3(...)     \
460   namespace folly {                                 \
461   template <class T1, class T2, class T3>           \
462   FOLLY_ASSUME_RELOCATABLE(__VA_ARGS__<T1, T2, T3>) \
463   }
464 // Use this macro ONLY at global level (no namespace)
465 #define FOLLY_ASSUME_FBVECTOR_COMPATIBLE_4(...)         \
466   namespace folly {                                     \
467   template <class T1, class T2, class T3, class T4>     \
468   FOLLY_ASSUME_RELOCATABLE(__VA_ARGS__<T1, T2, T3, T4>) \
469   }
470
471 /**
472  * Instantiate FOLLY_ASSUME_FBVECTOR_COMPATIBLE for a few types. It is
473  * safe to assume that pair is compatible if both of its components
474  * are. Furthermore, all STL containers can be assumed to comply,
475  * although that is not guaranteed by the standard.
476  */
477
478 FOLLY_NAMESPACE_STD_BEGIN
479
480 template <class T, class U>
481   struct pair;
482 #ifndef _GLIBCXX_USE_FB
483 FOLLY_GLIBCXX_NAMESPACE_CXX11_BEGIN
484 template <class T, class R, class A>
485   class basic_string;
486 FOLLY_GLIBCXX_NAMESPACE_CXX11_END
487 #else
488 template <class T, class R, class A, class S>
489   class basic_string;
490 #endif
491 template <class T, class A>
492   class vector;
493 template <class T, class A>
494   class deque;
495 FOLLY_GLIBCXX_NAMESPACE_CXX11_BEGIN
496 template <class T, class A>
497   class list;
498 FOLLY_GLIBCXX_NAMESPACE_CXX11_END
499 template <class T, class C, class A>
500   class set;
501 template <class K, class V, class C, class A>
502   class map;
503 template <class T>
504   class shared_ptr;
505
506 FOLLY_NAMESPACE_STD_END
507
508 namespace folly {
509
510 // STL commonly-used types
511 template <class T, class U>
512 struct IsRelocatable< std::pair<T, U> >
513     : std::integral_constant<bool,
514         IsRelocatable<T>::value &&
515         IsRelocatable<U>::value> {};
516
517 // Is T one of T1, T2, ..., Tn?
518 template <typename T, typename... Ts>
519 using IsOneOf = StrictDisjunction<std::is_same<T, Ts>...>;
520
521 /*
522  * Complementary type traits for integral comparisons.
523  *
524  * For instance, `if(x < 0)` yields an error in clang for unsigned types
525  *  when -Werror is used due to -Wtautological-compare
526  *
527  *
528  * @author: Marcelo Juchem <marcelo@fb.com>
529  */
530
531 namespace detail {
532
533 template <typename T, bool>
534 struct is_negative_impl {
535   constexpr static bool check(T x) { return x < 0; }
536 };
537
538 template <typename T>
539 struct is_negative_impl<T, false> {
540   constexpr static bool check(T) { return false; }
541 };
542
543 // folly::to integral specializations can end up generating code
544 // inside what are really static ifs (not executed because of the templated
545 // types) that violate -Wsign-compare and/or -Wbool-compare so suppress them
546 // in order to not prevent all calling code from using it.
547 FOLLY_PUSH_WARNING
548 FOLLY_GCC_DISABLE_WARNING("-Wsign-compare")
549 #if __GNUC_PREREQ(5, 0)
550 FOLLY_GCC_DISABLE_WARNING("-Wbool-compare")
551 #endif
552 FOLLY_MSVC_DISABLE_WARNING(4388) // sign-compare
553 FOLLY_MSVC_DISABLE_WARNING(4804) // bool-compare
554
555 template <typename RHS, RHS rhs, typename LHS>
556 bool less_than_impl(LHS const lhs) {
557   return
558     rhs > std::numeric_limits<LHS>::max() ? true :
559     rhs <= std::numeric_limits<LHS>::min() ? false :
560     lhs < rhs;
561 }
562
563 template <typename RHS, RHS rhs, typename LHS>
564 bool greater_than_impl(LHS const lhs) {
565   return
566     rhs > std::numeric_limits<LHS>::max() ? false :
567     rhs < std::numeric_limits<LHS>::min() ? true :
568     lhs > rhs;
569 }
570
571 FOLLY_POP_WARNING
572
573 } // namespace detail {
574
575 // same as `x < 0`
576 template <typename T>
577 constexpr bool is_negative(T x) {
578   return folly::detail::is_negative_impl<T, std::is_signed<T>::value>::check(x);
579 }
580
581 // same as `x <= 0`
582 template <typename T>
583 constexpr bool is_non_positive(T x) { return !x || folly::is_negative(x); }
584
585 // same as `x > 0`
586 template <typename T>
587 constexpr bool is_positive(T x) { return !is_non_positive(x); }
588
589 // same as `x >= 0`
590 template <typename T>
591 constexpr bool is_non_negative(T x) {
592   return !x || is_positive(x);
593 }
594
595 template <typename RHS, RHS rhs, typename LHS>
596 bool less_than(LHS const lhs) {
597   return detail::less_than_impl<
598     RHS, rhs, typename std::remove_reference<LHS>::type
599   >(lhs);
600 }
601
602 template <typename RHS, RHS rhs, typename LHS>
603 bool greater_than(LHS const lhs) {
604   return detail::greater_than_impl<
605     RHS, rhs, typename std::remove_reference<LHS>::type
606   >(lhs);
607 }
608 } // namespace folly
609
610 // Assume nothing when compiling with MSVC.
611 #ifndef _MSC_VER
612 // gcc-5.0 changed string's implementation in libstdc++ to be non-relocatable
613 #if !_GLIBCXX_USE_CXX11_ABI
614 FOLLY_ASSUME_FBVECTOR_COMPATIBLE_3(std::basic_string)
615 #endif
616 FOLLY_ASSUME_FBVECTOR_COMPATIBLE_2(std::vector)
617 FOLLY_ASSUME_FBVECTOR_COMPATIBLE_2(std::list)
618 FOLLY_ASSUME_FBVECTOR_COMPATIBLE_2(std::deque)
619 FOLLY_ASSUME_FBVECTOR_COMPATIBLE_2(std::unique_ptr)
620 FOLLY_ASSUME_FBVECTOR_COMPATIBLE_1(std::shared_ptr)
621 FOLLY_ASSUME_FBVECTOR_COMPATIBLE_1(std::function)
622 #endif
623
624 /* Some combinations of compilers and C++ libraries make __int128 and
625  * unsigned __int128 available but do not correctly define their standard type
626  * traits.
627  *
628  * If FOLLY_SUPPLY_MISSING_INT128_TRAITS is defined, we define these traits
629  * here.
630  *
631  * @author: Phil Willoughby <philwill@fb.com>
632  */
633 #if FOLLY_SUPPLY_MISSING_INT128_TRAITS
634 FOLLY_NAMESPACE_STD_BEGIN
635 template <>
636 struct is_arithmetic<__int128> : ::std::true_type {};
637 template <>
638 struct is_arithmetic<unsigned __int128> : ::std::true_type {};
639 template <>
640 struct is_integral<__int128> : ::std::true_type {};
641 template <>
642 struct is_integral<unsigned __int128> : ::std::true_type {};
643 template <>
644 struct make_unsigned<__int128> {
645   typedef unsigned __int128 type;
646 };
647 template <>
648 struct make_signed<__int128> {
649   typedef __int128 type;
650 };
651 template <>
652 struct make_unsigned<unsigned __int128> {
653   typedef unsigned __int128 type;
654 };
655 template <>
656 struct make_signed<unsigned __int128> {
657   typedef __int128 type;
658 };
659 template <>
660 struct is_signed<__int128> : ::std::true_type {};
661 template <>
662 struct is_unsigned<unsigned __int128> : ::std::true_type {};
663 FOLLY_NAMESPACE_STD_END
664 #endif // FOLLY_SUPPLY_MISSING_INT128_TRAITS