共用方式為


is_partitioned

傳回 true ,如果為條件測試 true 在指定範圍內的所有項目都在測試 false的所有項目之前。

template<class InputIterator, class BinaryPredicate>
    bool is_partitioned(
        InputIterator _First, 
        InputIterator _Last,
        BinaryPredicate _Comp
    );

參數

  • _First
    輸入該 Iterator 指示範圍開始檢查條件的地方。

  • _Last
    表示範圍結尾的輸入 Iterator。

  • _Comp
    測試狀態對於。 使用者定義的述詞函式物件提供這個定義項目會滿足條件進行搜尋。 述詞使用單一引數並傳回 true或 false。

傳回值

傳回 true,當條件為時測試 true 的所有在這個範圍的項目來,在測試 false之前的任何項目則傳回 false。

備註

只有在 [_First,_Last) 的所有元素由 _Comp,分割樣板函式會傳回 true ;也就是 [_First,_Last_Comp(X) true) 的所有元素 X 中所有 _Comp項目的(Y) 為 falseY 之前。

需求

標頭:<algorithm>

命名空間: std

請參閱

參考

is_sorted

is_sorted_until

partition_point

partition_copy

<algorithm>

標準樣板程式庫