Skip to content

Commit 6492aa8

Browse files
committed
Update docs
1 parent 21d8840 commit 6492aa8

File tree

6 files changed

+12
-0
lines changed

6 files changed

+12
-0
lines changed

doc/decimal/decimal128.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ template <typename Integral>
5050
constexpr decimal128& operator=(const Integeral& RHS) noexcept;
5151
5252
// 3.2.4.4 Conversion to integral type
53+
// If the value exceeds the range of the integral,
54+
// or is non-finite std::numeric_limits::max() is returned
5355
explicit constexpr operator int() const noexcept;
5456
explicit constexpr operator unsigned() const noexcept;
5557
explicit constexpr operator long() const noexcept;

doc/decimal/decimal128_fast.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ template <typename Integral>
5050
constexpr decimal128_fast& operator=(const Integeral& RHS) noexcept;
5151
5252
// 3.2.4.4 Conversion to integral type
53+
// If the value exceeds the range of the integral,
54+
// or is non-finite std::numeric_limits::max() is returned
5355
explicit constexpr operator int() const noexcept;
5456
explicit constexpr operator unsigned() const noexcept;
5557
explicit constexpr operator long() const noexcept;

doc/decimal/decimal32.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ template <typename Integral>
5050
constexpr decimal32& operator=(const Integeral& RHS) noexcept;
5151
5252
// 3.2.2.4 Conversion to integral type
53+
// If the value exceeds the range of the integral,
54+
// or is non-finite std::numeric_limits::max() is returned
5355
explicit constexpr operator int() const noexcept;
5456
explicit constexpr operator unsigned() const noexcept;
5557
explicit constexpr operator long() const noexcept;

doc/decimal/decimal32_fast.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ template <typename Integral>
5050
constexpr decimal32_fast& operator=(const Integeral& RHS) noexcept;
5151
5252
// 3.2.2.4 Conversion to integral type
53+
// If the value exceeds the range of the integral,
54+
// or is non-finite std::numeric_limits::max() is returned
5355
explicit constexpr operator int() const noexcept;
5456
explicit constexpr operator unsigned() const noexcept;
5557
explicit constexpr operator long() const noexcept;

doc/decimal/decimal64.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ template <typename Integral>
5050
constexpr decimal64& operator=(const Integeral& RHS) noexcept;
5151
5252
// 3.2.3.4 Conversion to integral type
53+
// If the value exceeds the range of the integral,
54+
// or is non-finite std::numeric_limits::max() is returned
5355
explicit constexpr operator int() const noexcept;
5456
explicit constexpr operator unsigned() const noexcept;
5557
explicit constexpr operator long() const noexcept;

doc/decimal/decimal64_fast.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ template <typename Integral>
5050
constexpr decimal64_fast& operator=(const Integeral& RHS) noexcept;
5151
5252
// 3.2.3.4 Conversion to integral type
53+
// If the value exceeds the range of the integral,
54+
// or is non-finite std::numeric_limits::max() is returned
5355
explicit constexpr operator int() const noexcept;
5456
explicit constexpr operator unsigned() const noexcept;
5557
explicit constexpr operator long() const noexcept;

0 commit comments

Comments
 (0)