Explorar el Código

`BalancedTree` implements `haxe.Constraints.IMap` (#6231)

Mark Knol hace 8 años
padre
commit
dab1188b34
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      std/haxe/ds/BalancedTree.hx

+ 1 - 1
std/haxe/ds/BalancedTree.hx

@@ -32,7 +32,7 @@ package haxe.ds;
 	Iteration over keys and values, using `keys` and `iterator` respectively,
 	are in-order.
 **/
-class BalancedTree<K,V> {
+class BalancedTree<K,V> implements haxe.Constraints.IMap<K,V> {
 	var root:TreeNode<K,V>;
 
 	/**