1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-24 21:41:33 +02:00
Files
dotSCAD/docs/lib3x-hashset_elems.md
Justin Lin 23b263bc1e update doc
2021-03-08 18:21:14 +08:00

19 lines
401 B
Markdown

# hashset_elems
Returns a list containing all elements in a [util/set/hashset](https://openhome.cc/eGossip/OpenSCAD/lib3x-hashset.html). No guarantees to the order.
**Since:** 3.0
## Parameters
- `set` : The set.
## Examples
use <util/set/hashset.scad>;
use <util/set/hashset_elems.scad>;
s = hashset([1, 2, 3, 4, 5]);
echo(hashset_elems(s)); // a list contains 1, 2, 3, 4, 5