comparison liboctave/ArrayN.h @ 5275:23b37da9fd5b

[project @ 2005-04-08 16:07:35 by jwe]
author jwe
date Fri, 08 Apr 2005 16:07:37 +0000
parents e35b034d3523
children 4c8a2e4e0717
comparison
equal deleted inserted replaced
5274:eae7b40388e9 5275:23b37da9fd5b
106 { 106 {
107 Array<T>::insert (a, dv); 107 Array<T>::insert (a, dv);
108 return *this; 108 return *this;
109 } 109 }
110 110
111 ArrayN<T>& insert (const ArrayN<T>& a, int r, int c) 111 ArrayN<T>& insert (const ArrayN<T>& a, octave_idx_type r, octave_idx_type c)
112 { 112 {
113 Array<T>::insert (a, r, c); 113 Array<T>::insert (a, r, c);
114 return *this; 114 return *this;
115 } 115 }
116 116