Skip to content

Commit bd778a3

Browse files
committed
Reflect new naming in the docs
1 parent 9bef85e commit bd778a3

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

doc/modules/ROOT/pages/basics.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Every decimal type can be constructed in a few ways:
1717
[source, c++]
1818
----
1919
template <typename UnsignedInteger, typename Integer>
20-
constexpr decimal32_t(UnsignedInteger coefficient, Integer exponent, bool sign = false) noexcept;
20+
constexpr decimal32_t(UnsignedInteger coefficient, Integer exponent, bool is_negative = false) noexcept;
2121
2222
template <typename SignedInteger, typename Integer>
2323
constexpr decimal32_t(SignedInteger coefficient, Integer exponent) noexcept;

doc/modules/ROOT/pages/decimal128_t.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ explicit constexpr decimal128_t(std::string_view str);
6464
#endif
6565
6666
template <typename UnsignedIntegral, typename Integral>
67-
constexpr decimal128_t(UnsignedIntegral coeff, Integral exp, bool sign = false) noexcept;
67+
constexpr decimal128_t(UnsignedIntegral coeff, Integral exp, bool is_negative = false) noexcept;
6868
6969
template <typename SignedIntegral, typename Integral>
70-
constexpr decimal128_t(SignedIntegral coeff, Integral exp, bool sign = false) noexcept;
70+
constexpr decimal128_t(SignedIntegral coeff, Integral exp, bool is_negative = false) noexcept;
7171
7272
template <typename Integral>
7373
constexpr decimal128_t& operator=(const Integeral& RHS) noexcept;

doc/modules/ROOT/pages/decimal32_t.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ explicit constexpr decimal32_t(std::string_view str);
6464
#endif
6565
6666
template <typename UnsignedIntegral, typename Integral>
67-
constexpr decimal32_t(UnsignedIntegral coeff, Integral exp, bool sign = false) noexcept;
67+
constexpr decimal32_t(UnsignedIntegral coeff, Integral exp, bool is_negative = false) noexcept;
6868
6969
template <typename SignedIntegral, typename Integral>
7070
constexpr decimal32_t(SignedIntegral coeff, Integral exp) noexcept;

doc/modules/ROOT/pages/decimal64_t.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ explicit constexpr decimal64_t(std::string_view str);
6464
#endif
6565
6666
template <typename UnsignedIntegral, typename Integral>
67-
constexpr decimal64_t(UnsignedIntegral coeff, Integral exp, bool sign = false) noexcept;
67+
constexpr decimal64_t(UnsignedIntegral coeff, Integral exp, bool is_negative = false) noexcept;
6868
6969
template <typename SignedIntegral, typename Integral>
7070
constexpr decimal64_t(SignedIntegral coeff, Integral exp) noexcept;

doc/modules/ROOT/pages/decimal_fast128_t.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ explicit constexpr decimal_fast128_t(std::string_view str);
6666
#endif
6767
6868
template <typename UnsignedIntegral, typename Integral>
69-
constexpr decimal_fast128_t(UnsignedIntegral coeff, Integral exp, bool sign = false) noexcept;
69+
constexpr decimal_fast128_t(UnsignedIntegral coeff, Integral exp, bool is_negative = false) noexcept;
7070
7171
template <typename SignedIntegral, typename Integral>
7272
constexpr decimal_fast128_t(SignedIntegral coeff, Integral exp) noexcept;

doc/modules/ROOT/pages/decimal_fast32_t.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ explicit constexpr decimal_fast32_t(std::string_view str);
6666
#endif
6767
6868
template <typename UnsignedIntegral, typename Integral>
69-
constexpr decimal_fast32_t(UnsignedIntegral coeff, Integral exp, bool sign = false) noexcept;
69+
constexpr decimal_fast32_t(UnsignedIntegral coeff, Integral exp, bool is_negative = false) noexcept;
7070
7171
template <typename SignedIntegral, typename Integral>
7272
constexpr decimal_fast32_t(SignedIntegral coeff, Integral exp) noexcept;

doc/modules/ROOT/pages/decimal_fast64_t.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ explicit constexpr decimal_fast64_t(std::string_view str);
6666
#endif
6767
6868
template <typename UnsignedIntegral, typename Integral>
69-
constexpr decimal_fast64_t(UnsignedIntegral coeff, Integral exp, bool sign = false) noexcept;
69+
constexpr decimal_fast64_t(UnsignedIntegral coeff, Integral exp, bool is_negative = false) noexcept;
7070
7171
template <typename SignedIntegral, typename Integral>
7272
constexpr decimal_fast64_t(SignedIntegral coeff, Integral exp) noexcept;

0 commit comments

Comments
 (0)