소스 검색

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

Mark Knol 8 년 전
부모
커밋
dab1188b34
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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,
 	Iteration over keys and values, using `keys` and `iterator` respectively,
 	are in-order.
 	are in-order.
 **/
 **/
-class BalancedTree<K,V> {
+class BalancedTree<K,V> implements haxe.Constraints.IMap<K,V> {
 	var root:TreeNode<K,V>;
 	var root:TreeNode<K,V>;
 
 
 	/**
 	/**