Mercurial > hg > octave-nkf
diff src/Cell.h @ 8175:977d5204cf67
fix null assignment for structs
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Thu, 02 Oct 2008 22:50:44 +0200 |
parents | 36594d5bbe13 |
children | 7cbe01c21986 |
line wrap: on
line diff
--- a/src/Cell.h +++ b/src/Cell.h @@ -89,6 +89,8 @@ const octave_value& rfv = resize_fill_value ()) const { return Cell (ArrayN<octave_value>::index (ra_idx, resize_ok, rfv)); } + Cell& delete_elements (const octave_value_list& idx); + Cell& assign (const octave_value_list& idx, const Cell& rhs, const octave_value& fill_val = octave_value ());