Condividi tramite


operator> (<forward_list>)

Test se l'oggetto elenco più a sinistra dell'operatore è maggiore dell'oggetto elenco più a destra.

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

Parametri

Parametro

Descrizione

_Left

Oggetto di tipo forward_list.

_Right

Oggetto di tipo forward_list.

Valore restituito

true se l'elenco a sinistra dell'operatore è maggiore dell'elenco a destra dell'operatore, in caso contrario false.

Note

Questa funzione modello restituisce _Right < _Left.

Requisiti

intestazione: <forward_list>

Spazio dei nomi: deviazione standard

Vedere anche

Riferimenti

<forward_list>