名前空間
変種
操作

標準ライブラリヘッダー <numbers> (C++20)

From cppreference.com
 
 
標準ライブラリヘッダー
アルゴリズム
<algorithm>
<numeric>
文字列
<cctype>
<cstring>
<cuchar> (C++11)
<cwchar>
<cwctype>
<string_view> (C++17)
<string>
テキスト処理
<clocale>
<codecvt> (C++11/17/26*)
<locale>
<regex> (C++11)
<text_encoding> (C++26)   
数値
<cfenv> (C++11)
<cmath>
<complex>
<linalg> (C++26)
<numbers> (C++20)
<random> (C++11)
<simd> (C++26)
<valarray>
時間
<chrono> (C++11)
<ctime>
C互換
<ccomplex> (C++11/17/20*)
<ciso646> (C++20 まで)
<cstdalign> (C++11/17/20*)
<cstdbool> (C++11/17/20*)
<ctgmath> (C++11/17/20*)
 

このヘッダーは数値ライブラリの一部です。

[編集] 数学定数 (C++20以降)

ヘッダー <numbers> は、std::numbers::pistd::numbers::sqrt2 のような複数の数学定数を提供します。

[編集] 概要

namespace std::numbers {
  template<class T> inline constexpr T e_v          = /* unspecified */;
  template<class T> inline constexpr T log2e_v      = /* unspecified */;
  template<class T> inline constexpr T log10e_v     = /* unspecified */;
  template<class T> inline constexpr T pi_v         = /* unspecified */;
  template<class T> inline constexpr T inv_pi_v     = /* unspecified */;
  template<class T> inline constexpr T inv_sqrtpi_v = /* unspecified */;
  template<class T> inline constexpr T ln2_v        = /* unspecified */;
  template<class T> inline constexpr T ln10_v       = /* unspecified */;
  template<class T> inline constexpr T sqrt2_v      = /* unspecified */;
  template<class T> inline constexpr T sqrt3_v      = /* unspecified */;
  template<class T> inline constexpr T inv_sqrt3_v  = /* unspecified */;
  template<class T> inline constexpr T egamma_v     = /* unspecified */;
  template<class T> inline constexpr T phi_v        = /* unspecified */;
 
  template<floating_point T> inline constexpr T e_v<T>          = /* see description */;
  template<floating_point T> inline constexpr T log2e_v<T>      = /* see description */;
  template<floating_point T> inline constexpr T log10e_v<T>     = /* see description */;
  template<floating_point T> inline constexpr T pi_v<T>         = /* see description */;
  template<floating_point T> inline constexpr T inv_pi_v<T>     = /* see description */;
  template<floating_point T> inline constexpr T inv_sqrtpi_v<T> = /* see description */;
  template<floating_point T> inline constexpr T ln2_v<T>        = /* see description */;
  template<floating_point T> inline constexpr T ln10_v<T>       = /* see description */;
  template<floating_point T> inline constexpr T sqrt2_v<T>      = /* see description */;
  template<floating_point T> inline constexpr T sqrt3_v<T>      = /* see description */;
  template<floating_point T> inline constexpr T inv_sqrt3_v<T>  = /* see description */;
  template<floating_point T> inline constexpr T egamma_v<T>     = /* see description */;
  template<floating_point T> inline constexpr T phi_v<T>        = /* see description */;
 
  inline constexpr double e          = e_v<double>;
  inline constexpr double log2e      = log2e_v<double>;
  inline constexpr double log10e     = log10e_v<double>;
  inline constexpr double pi         = pi_v<double>;
  inline constexpr double inv_pi     = inv_pi_v<double>;
  inline constexpr double inv_sqrtpi = inv_sqrtpi_v<double>;
  inline constexpr double ln2        = ln2_v<double>;
  inline constexpr double ln10       = ln10_v<double>;
  inline constexpr double sqrt2      = sqrt2_v<double>;
  inline constexpr double sqrt3      = sqrt3_v<double>;
  inline constexpr double inv_sqrt3  = inv_sqrt3_v<double>;
  inline constexpr double egamma     = egamma_v<double>;
  inline constexpr double phi        = phi_v<double>;
}
English 日本語 中文(简体) 中文(繁體)