1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- #ifndef _LIBCPP_BIT
- #define _LIBCPP_BIT
- #include <__assert> // all public C++ headers provide the assertion handler
- #include <__bit/bit_cast.h>
- #include <__bit/bit_ceil.h>
- #include <__bit/bit_floor.h>
- #include <__bit/bit_log2.h>
- #include <__bit/bit_width.h>
- #include <__bit/blsr.h>
- #include <__bit/byteswap.h>
- #include <__bit/countl.h>
- #include <__bit/countr.h>
- #include <__bit/endian.h>
- #include <__bit/has_single_bit.h>
- #include <__bit/popcount.h>
- #include <__bit/rotate.h>
- #include <__config>
- #include <version>
- #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
- # pragma GCC system_header
- #endif
- #if !defined(_LIBCPP_REMOVE_TRANSITIVE_INCLUDES) && _LIBCPP_STD_VER <= 20
- # include <cstdlib>
- # include <iosfwd>
- # include <limits>
- # include <type_traits>
- #endif
- #endif
|