Browse Source

[std] ReadOnlyArray should forward contains() and keyValueIterator()

Jens Fischer 5 years ago
parent
commit
3aafbdc2b9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/haxe/ds/ReadOnlyArray.hx

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

@@ -30,7 +30,7 @@ package haxe.ds;
 	Other code holding a reference to the underlying `Array` can still modify it,
 	and the reference can be obtained with a `cast`.
 **/
-@:forward(concat, copy, filter, indexOf, iterator, join, lastIndexOf, map, slice, toString)
+@:forward(concat, copy, filter, indexOf, iterator, keyValueIterator, join, lastIndexOf, map, slice, contains, toString)
 abstract ReadOnlyArray<T>(Array<T>) from Array<T> to Iterable<T> {
 	/**
 		The length of `this` Array.