MCPcopy Create free account
hub / github.com/Neop/mudmap2 / values

Method values

src/main/java/mudmap2/backend/prquadtree/Quadtree.java:158–164  ·  view source on GitHub ↗

Gets the data of all elements @return

()

Source from the content-addressed store, hash-verified

156 * @return
157 */
158 public HashSet<T> values(){
159 HashSet<T> ret = new HashSet<>();
160 if(root != null){
161 root.values(ret);
162 }
163 return ret;
164 }
165
166 /**
167 * Gets a String that represents the tree structure

Callers 1

testValuesMethod · 0.95

Calls 1

valuesMethod · 0.65

Tested by 1

testValuesMethod · 0.76