operator< (<memory>)
2 番目のオブジェクトよりも小さい 1 種類のオブジェクトのテスト。
template<class Type1, class Del1, class Type2, class Del2>
bool operator<(
const unique_ptr<Type1, Del1>& _Left,
const unique_ptr<Type2&, Del2>& _Right
);
template<class Ty1, class Ty2>
bool operator<(
const shared_ptr<Ty1>& _Left,
const shared_ptr<Ty2>& _Right
);
パラメーター
_Left
比較するオブジェクトの 1 つ。_Right
比較するオブジェクトの 1 つ。Ty1
左のポインターによって制御される型。Ty2
右のポインターによって制御される型。
プロパティ値/戻り値
_Left.get() <_Right.get().を返します
必要条件
ヘッダー: <memory>
名前空間: std