Lines Matching defs:SetVector
2016 Set-Like Containers (std::set, SmallSet, SetVector, etc)
2186 llvm/ADT/SetVector.h
2189 LLVM's ``SetVector<Type>`` is an adapter class that combines your choice of a
2197 The difference between SetVector and other sets is that the order of iteration
2198 is guaranteed to match the order of insertion into the SetVector. This property
2204 The drawback of SetVector is that it requires twice as much space as a normal
2207 the elements in a deterministic order. SetVector is also expensive to delete
2211 ``SetVector`` is an adapter class that defaults to using ``std::vector`` and a
2213 However, ``"llvm/ADT/SetVector.h"`` also provides a ``SmallSetVector`` class,
2223 UniqueVector is similar to :ref:`SetVector <dss_setvector>` but it retains a