cppreference.com
検索
アカウント作成
ログイン
名前空間
ページ
議論
変種
表示
閲覧
編集
履歴
操作
C++ コンセプト:
LessThanComparable
提供: cppreference.com
<
cpp
|
concept
C++
言語
コンセプト
ユーティリティライブラリ
ストリングスライブラリ
コンテナライブラリ
アルゴリズムライブラリ
イテレータライブラリ
ニューメリックスライブラリ
入力/出力ライブラリ
ローカライゼーションライブラリ
正規表現ライブラリ
(C++11)
アトミック操作ライブラリ
(C++11)
スレッドのサポートライブラリ
(C++11)
[edit]
C + +の概念
基本
Original:
Basic
The text has been machine-translated via
Google Translate
.
You can help to correct and verify the translation. Click
here
for instructions.
DefaultConstructible
CopyAssignable
CopyConstructible
MoveAssignable
(C++11)
MoveConstructible
(C++11)
Destructible
ライブラリワイド
Original:
Library-Wide
The text has been machine-translated via
Google Translate
.
You can help to correct and verify the translation. Click
here
for instructions.
EqualityComparable
LessThanComparable
Swappable
(C++11)
ValueSwappable
(C++11)
NullablePointer
(C++11)
Hash
(C++11)
Allocator
コンテナ
Original:
Container
The text has been machine-translated via
Google Translate
.
You can help to correct and verify the translation. Click
here
for instructions.
Container
SequenceContainer
ReversibleContainer
AssociativeContainer
AllocatorAwareContainer
UnorderedAssociativeContainer
(C++11)
コンテナ要素
Original:
Container Elements
The text has been machine-translated via
Google Translate
.
You can help to correct and verify the translation. Click
here
for instructions.
CopyInsertable
(C++11)
MoveInsertable
(C++11)
EmplaceConstructible
(C++11)
イテレータ
Original:
Iterator
The text has been machine-translated via
Google Translate
.
You can help to correct and verify the translation. Click
here
for instructions.
Iterator
OutputIterator
InputIterator
ForwardIterator
BidirectionalIterator
RandomAccessIterator
乱数
Original:
Random Numbers
The text has been machine-translated via
Google Translate
.
You can help to correct and verify the translation. Click
here
for instructions.
SeedSequence
(C++11)
RandomNumberEngine
(C++11)
RandomNumberDistribution
(C++11)
UniformRandomNumberGenerator
(C++11)
RandomNumberEngineAdaptor
(C++11)
同時実行
Original:
Concurrency
The text has been machine-translated via
Google Translate
.
You can help to correct and verify the translation. Click
here
for instructions.
BasicLockable
(C++11)
Lockable
(C++11)
TimedLockable
(C++11)
Mutex
(C++11)
TimedMutex
(C++11)
その他
Original:
Other
The text has been machine-translated via
Google Translate
.
You can help to correct and verify the translation. Click
here
for instructions.
CharTraits
pos_type
off_type
Clock
(C++11)
UnaryTypeTrait
(C++11)
BinaryTypeTrait
(C++11)
TransformationTrait
(C++11)
TrivialClock
(C++11)
[edit]
型は<演算子で比較できる必要があり、結果は標準のセマンティクスを持たなければなりません.
[
編集
]
要件
Expression
Requirements
Return type
a < b
!(x < x)
もし
a < b
ならば
!(b < a)
a < b
かつ
b < c
ならば
a < c
(厳密な弱順序関係)
bool
または
bool
に暗黙型変換可能な型