comparison liboctave/Array.h @ 3836:b8c1cb5b9fd9

[project @ 2001-05-31 19:30:49 by jwe]
author jwe
date Thu, 31 May 2001 19:30:52 +0000
parents 0689afb1d001
children e8627dc4bdf2
comparison
equal deleted inserted replaced
3835:47ee5e57a350 3836:b8c1cb5b9fd9
250 #endif 250 #endif
251 }; 251 };
252 252
253 template <class LT, class RT> 253 template <class LT, class RT>
254 int 254 int
255 assign (Array<LT>& lhs, const Array<RT>& rhs); 255 assign (Array<LT>& lhs, const Array<RT>& rhs, const LT& resize_fill_value);
256
257 template <class LT, class RT>
258 int
259 assign (Array<LT>& lhs, const Array<RT>& rhs)
260 {
261 return assign (lhs, rhs, static_cast<LT> (0));
262 }
256 263
257 #endif 264 #endif
258 265
259 /* 266 /*
260 ;;; Local Variables: *** 267 ;;; Local Variables: ***