共用方式為


operator>= (<forward_list>)

測試,如果左側的向前清單物件大於或等於右邊的轉送清單物件。

bool operator>=(
    const forward_list <Type, Allocator>& _Left,
    const forward_list <Type, Allocator>& _Right
);

參數

參數

描述

_Left

型別 forward_list 的物件。

_Right

型別 forward_list 的物件。

傳回值

true ,如果左側的向前清單大於或等於向前清單在運算子的右邊,否則 false。

備註

樣板函式傳回 !(_Left < _Right)。

需求

標題: <forward_list>

命名空間: std

請參閱

參考

<forward_list>