From 5843905b73616abe5d3180c7fb1c6dfefde93b3c Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Fri, 21 Jul 2023 20:32:58 -0700 Subject: Array has delete by index now. --- src/stable/array.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/stable/array.h') diff --git a/src/stable/array.h b/src/stable/array.h index ca66213..86b57d9 100644 --- a/src/stable/array.h +++ b/src/stable/array.h @@ -687,6 +687,12 @@ namespace Bu _hardCopy(); core->erase( i.iPos ); } + + void erase( int i ) + { + _hardCopy(); + core->erase( i ); + } void erase( const value &v ) { -- cgit v1.2.3