diff --git a/dom.d b/dom.d index b3fbced..6fe9b43 100644 --- a/dom.d +++ b/dom.d @@ -3215,6 +3215,11 @@ struct ElementCollection { return ec; } + /// + Element opIndex(int i) { + return elements[i]; + } + /// if you slice it, give the underlying array for easy forwarding of the /// collection to range expecting algorithms or looping over. Element[] opSlice() {