Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 502 Bytes

File metadata and controls

20 lines (16 loc) · 502 Bytes

floating_point

  • concepts[meta header]
  • std[meta namespace]
  • concept[meta id-type]
  • cpp20[meta cpp]
namespace std {
  template <class T>
  concept floating_point = is_floating_point_v<T>;
}
  • is_floating_point_v[link /reference/type_traits/is_floating_point.md]

概要

floating_pointは、任意の型Tが浮動小数点数型であることを表す要件である。

参照