Added ElementProxy::getOrAddElement() (fixes #1311)

This commit is contained in:
Benoit Blanchon
2020-07-23 10:58:47 +02:00
parent 40085609e2
commit 6dc36125c2
4 changed files with 7 additions and 1 deletions

View File

@ -135,6 +135,10 @@ class ElementProxy : public VariantOperators<ElementProxy<TArray> >,
return getOrAddUpstreamElement().getElement(index);
}
VariantRef getOrAddElement(size_t index) const {
return getOrAddUpstreamElement().getOrAddElement(index);
}
FORCE_INLINE void remove(size_t index) const {
getUpstreamElement().remove(index);
}