public class RemoveKt
| Modifier and Type | Method and Description |
|---|---|
static <D> void |
remove(Quadtree<D> $receiver,
D datum)
Removes the specified datum to the quadtree, deriving its coordinates ⟨x,y⟩ using the current x- and y-accessors.
If the specified datum does not exist in this quadtree, this method does nothing.
TODO : check tests value must be === removed value
|
static <D> void |
removeAll(Quadtree<D> $receiver,
java.util.List<? extends D> data)
Removes the specified data from the quadtree.
|
public static <D> void remove(Quadtree<D> $receiver, D datum)
Removes the specified datum to the quadtree, deriving its coordinates ⟨x,y⟩ using the current x- and y-accessors. If the specified datum does not exist in this quadtree, this method does nothing. TODO : check tests value must be === removed value
public static <D> void removeAll(Quadtree<D> $receiver, java.util.List<? extends D> data)
Removes the specified data from the quadtree.
RemoveKt.remove