<div dir="rtl"><div dir="ltr">You can store the strings in a std::vector or SmallVector and use a StringSet to ensure uniqueness.</div><div dir="ltr"><br></div></div><div class="gmail_extra"><br><div class="gmail_quote"><div dir="ltr">2015-10-02 18:22 GMT+03:00 Russell Wallace via llvm-dev <span dir="ltr"><<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>></span>:</div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>I'm looking at a requirement to store a collection of strings and then iterate through them in an order that needs to be deterministic, but would do better to be the order in which they were encountered rather than alphabetical order. MapVector provides that order, though not for strings; the documentation mentioned the possibility of providing an appropriate specialization.</div><div><br></div><div>However, MapVector is based on DenseMap, which is designed for pointers, not objects like std::string. Would it be a good idea to go ahead and use it anyway, or would it be better to implement my own map vector based on some other underlying hash map class?</div></div>
<br>_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
<br></blockquote></div><br></div>