convenience ftw

This commit is contained in:
Adam D. Ruppe 2016-07-31 23:36:10 -04:00
parent 2e68805b68
commit 4844df22b5
1 changed files with 5 additions and 0 deletions

5
dom.d
View File

@ -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() {