Skip to content

Commit

Permalink
"see below"をitalic表記
Browse files Browse the repository at this point in the history
  • Loading branch information
yohhoy committed Jan 28, 2023
1 parent 8094e16 commit 915fa72
Show file tree
Hide file tree
Showing 57 changed files with 61 additions and 1 deletion.
1 change: 1 addition & 0 deletions reference/barrier/barrier.md
Expand Up @@ -10,6 +10,7 @@ namespace std {
class barrier;
}
```
* see below[italic]
## 概要
`barrier`クラスは、複数スレッドにより並行実行される反復的なタスク制御に便利な、スレッド調整機構(同期プリミティブ)である。
Expand Down
2 changes: 2 additions & 0 deletions reference/charconv/from_chars.md
Expand Up @@ -21,6 +21,8 @@ namespace std {
chars_format fmt = chars_format::general); // (4)
}
```
* see below[italic]
## 概要
与えられたイテレータ範囲`[first, last)`内の文字列から、オーバーロードと基数・フォーマット指定によって決まるパターンにマッチングする最初の数字文字列を見つけて、数値へ変換する。
Expand Down
1 change: 1 addition & 0 deletions reference/charconv/to_chars.md
Expand Up @@ -35,6 +35,7 @@ namespace std {
chars_format fmt, int precision); // (10)
}
```
* see below[italic]
## 概要
与えられた数値(`value`)を文字列へ変換し、`[first, last)`内へ出力する。
Expand Down
3 changes: 3 additions & 0 deletions reference/chrono/file_clock.md
Expand Up @@ -9,6 +9,7 @@ namespace std::chrono {
using file_clock = see below;
}
```
* see below[italic]
## 概要
`file_clock`は、ファイル時間を作るために使用されるクロックである。この時刻系は[`<filesystem>`](/reference/filesystem.md)ライブラリにおいてファイル作成日時やファイル更新日時を表現する[`file_time_type`](/reference/filesystem/file_time_type.md)のために定義される。
Expand All @@ -31,6 +32,7 @@ template<class Duration>
static file_time<see below>
from_sys(const sys_time<Duration>&);
```
* see below[italic]
* utc_clock[link utc_clock.md]
* sys_time[link sys_time.md]
* file_time[link file_time.md]
Expand All @@ -47,6 +49,7 @@ template<class Duration>
static file_time<see below>
from_utc(const utc_time<Duration>&);
```
* see below[italic]
* tai_clock[link tai_clock.md]
* gps_clock[link gps_clock.md]
* utc_time[link utc_time.md]
Expand Down
1 change: 1 addition & 0 deletions reference/chrono/hh_mm_ss/fractional_width.md
Expand Up @@ -14,6 +14,7 @@ namespace std::chrono {
};
}
```
* see below[italic]
## 概要
`precision`型によって表現される小数の小数桁数。
Expand Down
2 changes: 1 addition & 1 deletion reference/compare/three_way_comparable.md
Expand Up @@ -6,14 +6,14 @@

```cpp
namespace std {

template<class T, class Cat = partial_ordering>
concept three_way_comparable = /*see below*/; // (1)

template<class T, class U, class Cat = partial_ordering>
concept three_way_comparable_with = /*see below*/; // (2)
}
```
* see below[italic]
## 概要
`three_way_comparable`及び`three_way_comparable_with`は、指定された型`T`もしくは`T, U`の間で`<=>`による三方比較を使用可能であり、その戻り値型が指定した[比較カテゴリ型](/reference/compare.md)`Cat`に変換可能であることを表すコンセプトである。
Expand Down
1 change: 1 addition & 0 deletions reference/concepts/boolean-testable.md
Expand Up @@ -10,6 +10,7 @@ namespace std {
concept boolean-testable = /*see below*/; // 説明専用コンセプト
}
```
* see below[italic]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/concepts/default_initializable.md
Expand Up @@ -10,6 +10,7 @@ namespace std {
concept default_initializable = /*see below*/;
}
```
* see below[italic]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/concepts/equality_comparable.md
Expand Up @@ -13,6 +13,7 @@ namespace std {
concept equality_comparable_with = /*see below*/; // (2)
}
```
* see below[italic]
## 概要
`equality_comparable`及び`equality_comparable_with`は、指定された型`T`もしくは`T, U`の間で`==`演算子による同値比較が可能である事を表すコンセプトである。
Expand Down
1 change: 1 addition & 0 deletions reference/concepts/same_as.md
Expand Up @@ -10,6 +10,7 @@ namespace std {
concept same_as = /*see below*/;
}
```
* see below[italic]
## 概要
Expand Down
2 changes: 2 additions & 0 deletions reference/format/format_kind.md
Expand Up @@ -14,6 +14,8 @@ namespace std {
constexpr range_format format_kind<R> = see below; // (2) C++23
}
```
* unspecified[italic]
* see below[italic]
* range_format[link range_format.md]
* ranges::input_range[link /reference/ranges/input_range.md]
Expand Down
1 change: 1 addition & 0 deletions reference/functional/placeholders.md
Expand Up @@ -13,6 +13,7 @@ namespace placeholders {
/*see below*/ unspecified _N;
}}
```
* see below[italic]
* unspecified[italic]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/functional/reference_wrapper/op_constructor.md
Expand Up @@ -16,6 +16,7 @@ reference_wrapper(const reference_wrapper& x) noexcept; // (2) C++11

constexpr reference_wrapper(const reference_wrapper& x) noexcept; // (2) C++20
```
* see below[italic]
## 概要
与えられた参照で、参照オブジェクトを構築する。
Expand Down
1 change: 1 addition & 0 deletions reference/iterator/common_iterator.md
Expand Up @@ -33,6 +33,7 @@ namespace std {
};
}
```
* see below[italic]
* input_or_output_iterator[link /reference/iterator/input_or_output_iterator.md]
* sentinel_for[link /reference/iterator/sentinel_for.md]
* copyable[link /reference/concepts/copyable.md]
Expand Down
1 change: 1 addition & 0 deletions reference/iterator/common_iterator/op_arrow.md
Expand Up @@ -8,6 +8,7 @@
```cpp
decltype(auto) operator->() const requires /*see below*/;
```
* see below[italic]
## 概要
イテレータを間接参照する。
Expand Down
1 change: 1 addition & 0 deletions reference/iterator/indirectly_readable.md
Expand Up @@ -10,6 +10,7 @@ namespace std {
concept indirectly_readable = /*see below*/;
}
```
* see below[italic]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/iterator/is_integer_like.md
Expand Up @@ -13,6 +13,7 @@ namespace std {
inline constexpr bool is-signed-integer-like = /*see below*/;
}
```
* see below[italic]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/iterator/iter_difference_t.md
Expand Up @@ -10,6 +10,7 @@ namespace std {
using iter_difference_t = /*see below*/;
}
```
* see below[italic]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/iterator/iter_value_t.md
Expand Up @@ -10,6 +10,7 @@ namespace std {
using iter_value_t = /*see below*/;
}
```
* see below[italic]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/iterator/iterator_traits.md
Expand Up @@ -102,6 +102,7 @@ namespace std {
using reference = /*see below*/;
using iterator_category = /*see below*/;
```
* see below[italic]
* indirectly_readable_traits[link /reference/iterator/indirectly_readable_traits.md]
* incrementable_traits[link /reference/iterator/incrementable_traits.md]
* iter_reference_t[link /reference/iterator/iter_reference_t.md]
Expand Down
1 change: 1 addition & 0 deletions reference/iterator/reverse_iterator/iter_move.md
Expand Up @@ -14,6 +14,7 @@ namespace std {
};
}
```
* see below[italic]
* reverse_iterator[link /reference/iterator/reverse_iterator.md]
* iter_rvalue_reference_t[link /reference/iterator/iter_rvalue_reference_t.md]
Expand Down
1 change: 1 addition & 0 deletions reference/iterator/reverse_iterator/iter_swap.md
Expand Up @@ -16,6 +16,7 @@ namespace std {
};
}
```
* see below[italic]
* reverse_iterator[link /reference/iterator/reverse_iterator.md]
* indirectly_swappable[link /reference/iterator/indirectly_swappable.md]
Expand Down
1 change: 1 addition & 0 deletions reference/numbers/e.md
Expand Up @@ -16,6 +16,7 @@ namespace std::numbers {
}
```
* unspecified[italic]
* see below[italic]
* floating_point[link /reference/concepts/floating_point.md]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/numbers/egamma.md
Expand Up @@ -16,6 +16,7 @@ namespace std::numbers {
}
```
* unspecified[italic]
* see below[italic]
* floating_point[link /reference/concepts/floating_point.md]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/numbers/inv_pi.md
Expand Up @@ -16,6 +16,7 @@ namespace std::numbers {
}
```
* unspecified[italic]
* see below[italic]
* floating_point[link /reference/concepts/floating_point.md]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/numbers/inv_sqrt3.md
Expand Up @@ -16,6 +16,7 @@ namespace std::numbers {
}
```
* unspecified[italic]
* see below[italic]
* floating_point[link /reference/concepts/floating_point.md]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/numbers/inv_sqrtpi.md
Expand Up @@ -16,6 +16,7 @@ namespace std::numbers {
}
```
* unspecified[italic]
* see below[italic]
* floating_point[link /reference/concepts/floating_point.md]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/numbers/ln10.md
Expand Up @@ -16,6 +16,7 @@ namespace std::numbers {
}
```
* unspecified[italic]
* see below[italic]
* floating_point[link /reference/concepts/floating_point.md]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/numbers/ln2.md
Expand Up @@ -16,6 +16,7 @@ namespace std::numbers {
}
```
* unspecified[italic]
* see below[italic]
* floating_point[link /reference/concepts/floating_point.md]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/numbers/log10e.md
Expand Up @@ -16,6 +16,7 @@ namespace std::numbers {
}
```
* unspecified[italic]
* see below[italic]
* floating_point[link /reference/concepts/floating_point.md]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/numbers/log2e.md
Expand Up @@ -16,6 +16,7 @@ namespace std::numbers {
}
```
* unspecified[italic]
* see below[italic]
* floating_point[link /reference/concepts/floating_point.md]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/numbers/phi.md
Expand Up @@ -16,6 +16,7 @@ namespace std::numbers {
}
```
* unspecified[italic]
* see below[italic]
* floating_point[link /reference/concepts/floating_point.md]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/numbers/pi.md
Expand Up @@ -16,6 +16,7 @@ namespace std::numbers {
}
```
* unspecified[italic]
* see below[italic]
* floating_point[link /reference/concepts/floating_point.md]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/numbers/sqrt2.md
Expand Up @@ -16,6 +16,7 @@ namespace std::numbers {
}
```
* unspecified[italic]
* see below[italic]
* floating_point[link /reference/concepts/floating_point.md]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/numbers/sqrt3.md
Expand Up @@ -16,6 +16,7 @@ namespace std::numbers {
}
```
* unspecified[italic]
* see below[italic]
* floating_point[link /reference/concepts/floating_point.md]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/optional/make_optional.md
Expand Up @@ -18,6 +18,7 @@ namespace std {
Args&&... args); // (3)
}
```
* see below[italic]
## 概要
有効な値を保持する`optional`オブジェクトを構築する。
Expand Down
1 change: 1 addition & 0 deletions reference/optional/optional/op_assign.md
Expand Up @@ -21,6 +21,7 @@ optional& operator=(const optional<U>& rhs); // (5)
template <class U>
optional& operator=(optional<U>&& rhs); // (6)
```
* see below[italic]
* nullopt_t[link /reference/optional/nullopt_t.md]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/optional/optional/swap.md
Expand Up @@ -8,6 +8,7 @@
```cpp
void swap(optional& rhs) noexcept(see below);
```
* see below[italic]
## 概要
他の`optional`オブジェクトとデータを入れ替える。
Expand Down
1 change: 1 addition & 0 deletions reference/ranges/enable_view.md
Expand Up @@ -29,6 +29,7 @@ namespace std::ranges {
inline constexpr bool is-derived-from-view-interface = see below; // 説明専用
}
```
* see below[italic]

`is-derived-from-view-interface<T>`は、`T`がある型`U`についてただ一つだけ`view_interface<U>``public`な基底クラスに持ち、他の型`V`についての`view_interface<V>`を基底クラスに持たない場合に`true`となる。

Expand Down
1 change: 1 addition & 0 deletions reference/span/span/subspan.md
Expand Up @@ -13,6 +13,7 @@ constexpr span<element_type, see below>
constexpr span<element_type, dynamic_extent>
subspan(size_type offset, size_type count = dynamic_extent) const; // (2)
```
* see below[italic]
* dynamic_extent[link /reference/span/dynamic_extent.md]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/string/basic_string/op_compare_3way.md
Expand Up @@ -17,6 +17,7 @@ namespace std {
const charT* rhs); // (2) C++20
}
```
* see below[italic]
## 概要
`basic_string`オブジェクトの三方比較を行う。
Expand Down
1 change: 1 addition & 0 deletions reference/string/basic_string/op_deduction_guide.md
Expand Up @@ -29,6 +29,7 @@ namespace std {
-> basic_string<CharT, Traits, Allocator>; // (3) C++20
}
```
* see below[italic]
* allocator[link /reference/memory/allocator.md]
* iterator_traits[link /reference/iterator/iterator_traits.md]
* char_traits[link /reference/string/char_traits.md]
Expand Down
1 change: 1 addition & 0 deletions reference/string_view/basic_string_view/op_compare_3way.md
Expand Up @@ -12,6 +12,7 @@ namespace std {
basic_string_view<charT, traits> y) noexcept; // (1) C++20
}
```
* see below[italic]
## 概要
`basic_string_view`オブジェクトの三方比較を行う。
Expand Down
1 change: 1 addition & 0 deletions reference/tuple/apply.md
Expand Up @@ -15,6 +15,7 @@ namespace std {
apply(F&& f, Tuple&& t) noexcept(see below); // (1) C++23
}
```
* see below[italic]
## 概要
タプルを展開し、関数の引数に適用してその関数を実行する。
Expand Down
1 change: 1 addition & 0 deletions reference/tuple/tuple/op_assign.md
Expand Up @@ -32,6 +32,7 @@ tuple& operator=(pair<U1, U2>&&); // (6) C++11
template <class U1, class U2>
constexpr tuple& operator=(pair<U1, U2>&&); // (6) C++20
```
* see below[italic]
* pair[link /reference/utility/pair.md]
## 概要
Expand Down
1 change: 1 addition & 0 deletions reference/tuple/tuple/swap.md
Expand Up @@ -9,6 +9,7 @@
void swap(tuple& rhs) noexcept(see below); // (1) C++11
constexpr void swap(tuple& rhs) noexcept(see below); // (1) C++20
```
* see below[italic]
## 概要
他の`tuple`オブジェクトと中身を入れ替える。
Expand Down

0 comments on commit 915fa72

Please sign in to comment.