digitalmars.D.learn - is there a set container?
- Namal (3/3) Jan 25 2016 Hello,
- Adam D. Ruppe (10/10) Jan 25 2016 The std.container.RedBlackTree is close:
Hello, I am looking for data structure equivalent to std::set from C++. Couldn't find it in the documentation.
Jan 25 2016
The std.container.RedBlackTree is close: http://dlang.org/phobos/std_container_rbtree.html Or you may prefer my work-in-progress unofficial docs: http://dpldocs.info/experimental-docs/std.container.rbtree.RedBlackTree.html You can see methods there like insert, removeKey, and opBinaryRight, which is actually the in operator: http://dpldocs.info/experimental-docs/std.container.rbtree.RedBlackTree.opBinaryRight.html to see if an element exists in the set. Create a red black tree with this convenience function: http://dpldocs.info/experimental-docs/std.container.rbtree.redBlackTree.1.html
Jan 25 2016