Condividi tramite


shared_ptr::owner_before

Restituisce true se shared_ptr è ordinato prima (o minore di) del puntatore fornito.

template<class Other>
    bool owner_before(const shared_ptr<Other>& ptr);
template<class Other>
    bool owner_before(const weak_ptr<Other>& ptr);

Parametri

  • ptr
    Un riferimento di lvalue a shared_ptr o a weak_ptr.

Valore proprietà/Valore restituito

Restituisce true se questo ordinamento di shared_ptr prima del parametro del puntatore in caso contrario, false.

Note

La funzione membro di un modello restituisce true se *this è ordered beforeptr.

Requisiti

Header: <memory>

Spazio dei nomi: std

Vedere anche

Riferimenti

shared_ptr::owner_before