Skip to content

Commit

Permalink
numeric_limits: Fix description of max/min_exponent
Browse files Browse the repository at this point in the history
  • Loading branch information
nu4nu committed Apr 19, 2023
1 parent a13c86a commit 4816cf7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion reference/limits/numeric_limits/max_exponent.md
Expand Up @@ -14,7 +14,7 @@ static constexpr int max_exponent;

## 概要
浮動小数点数型において、型`T`の指数上限値を得る。
基数[`radix`](radix.md)`max_exponent`の値で累乗した値が、型`T`で表現可能な正規化された値となる最大の正の値。
基数[`radix`](radix.md)`max_exponent - 1`の値で累乗した値が、型`T`で表現可能な正規化された値となる最大の正の値。
浮動小数点数型以外は0になる。

対応するマクロを次の表に挙げる。
Expand Down
2 changes: 1 addition & 1 deletion reference/limits/numeric_limits/min_exponent.md
Expand Up @@ -14,7 +14,7 @@ static constexpr int min_exponent;

## 概要
浮動小数点数型において、型`T`の指数下限値を得る。
基数[`radix`](radix.md)`min_exponent`の値で累乗した値が、型`T`で表現可能な正規化された値となる最小の負の値。
基数[`radix`](radix.md)`min_exponent - 1`の値で累乗した値が、型`T`で表現可能な正規化された値となる最小の負の値。
浮動小数点数以外は0となる。

対応するマクロを次の表に挙げる。
Expand Down

0 comments on commit 4816cf7

Please sign in to comment.