Maipa's Standard Library Extension
1.5.6
mstd
Loading...
Searching...
No Matches
arithmetic_libs.hpp
1
/*
2
* mstd - Maipa's Standard Library
3
*
4
* Licensed under the BSD 3-Clause License with Attribution Requirement.
5
* See the LICENSE file for details: https://github.com/MAIPA01/mstd/blob/main/LICENSE
6
*
7
* Copyright (c) 2025, Patryk Antosik (MAIPA01)
8
*/
9
10
#
pragma
once
11
#
ifndef
_MSTD_ARITHMETIC_LIBS_HPP_
12
#
define
_MSTD_ARITHMETIC_LIBS_HPP_
13
14
#
include
<
mstd
/
config
.
hpp
>
15
16
#
if
!
_MSTD_HAS_CXX17
17
_MSTD_WARNING(
"this is only available for c++17 and greater!"
);
18
#
else
19
20
#
include
<
limits
>
21
#
include
<
type_traits
>
22
#
define
_USE_MATH_DEFINES
23
#
include
<
math
.
h
>
24
#
include
<
algorithm
>
25
#
include
<
cmath
>
26
#
include
<
cstring
>
27
#
include
<
iomanip
>
28
#
include
<
iostream
>
29
#
include
<
sstream
>
30
#
include
<
string
>
31
#
if
_MSTD_HAS_CXX20
32
#
include
<
bit
>
33
#
endif
34
#
endif
35
#
endif
_MSTD_HAS_CXX17
#define _MSTD_HAS_CXX17
Definition
config.hpp:45
_MSTD_HAS_CXX20
#define _MSTD_HAS_CXX20
Definition
config.hpp:52
mstd
include
arithmetic
mstd
arithmetic_libs.hpp
Generated by
1.16.1