Udostępnij za pośrednictwem


owner_less

Pozwala na własność mieszanych porównania wskaźników udostępnionego i słabe.Zwraca true Jeśli parametr lewej porządkowania przed parametr prawo przez funkcję Członkowskie owner_before.

template<class Type>
    struct owner_less; // not defined

template<class Type>
    struct owner_less<shared_ptr<Type> > {
    bool operator()(
        const shared_ptr<Type>& _Left,
        const shared_ptr<Type>& _Right
);
    bool operator()(
        const shared_ptr<Type>& _Left,
        const weak_ptr<Type>& _Right
);
    bool operator()(
        const weak_ptr<Type>& _Left,
        const shared_ptr<Type>& _Right
);
};

template<class Type>
    struct owner_less<weak_ptr<Type> >
    bool operator()(
        const weak_ptr<Type>& _Left,
        const weak_ptr<Type>& _Right
);
    bool operator()(
        const weak_ptr<Type>& _Left,
        const shared_ptr<Ty>& _Right
);
    bool operator()(
        const shared_ptr<Type>& _Left,
        const weak_ptr<Type>& _Right
);
};

Parametry

  • _left
    Wskaźnik słabe lub udostępnionej.

  • _Right
    Wskaźnik słabe lub udostępnionej.

Wartość właściwości wartość zwrotów

Zwraca true Jeśli _Left porządkowania przed _Right przez funkcję Członkowskie owner_before.

Uwagi

Klasy szablonu zdefiniować ich operatorów Członkowskich zwraca _Left.owner_before(_Right).

Wymagania

Nagłówek: <memory>

Obszar nazw: std

Zobacz też

Informacje

shared_ptr::owner_before

weak_ptr::owner_before

<memory>