comparison libinterp/octave-value/ov-base-sparse.h @ 20264:5dfaaaae784f

Deprecate Array::capacity() and Sparse::capacity() for numel() and nzmax(). * liboctave/array/Array.h (Array::capacity): deprecate for ::numel(). * liboctave/array/Sparse.h (Sparse::capacity): deprecate for ::nzmax(). Also move comments into doxygen docs. * libinterp/corefcn/daspk.cc, libinterp/corefcn/dasrt.cc, libinterp/corefcn/dassl.cc, libinterp/corefcn/jit-typeinfo.h, libinterp/corefcn/quad.cc, libinterp/corefcn/variables.cc, libinterp/octave-value/ov-base-sparse.h, libinterp/octave-value/ov-base.h, libinterp/octave-value/ov.h, liboctave/array/Sparse.cc, liboctave/numeric/DASPK.cc, liboctave/numeric/DASRT.cc, liboctave/numeric/DASSL.cc, liboctave/numeric/LSODE.cc, liboctave/numeric/Quad.cc, liboctave/numeric/base-de.h, liboctave/numeric/base-min.h, liboctave/numeric/oct-rand.cc: replace use of capacity by numel() or nzmax() as appropriate.
author Carnë Draug <carandraug@octave.org>
date Sun, 24 May 2015 04:47:20 +0100
parents 4197fc428c7d
children
comparison
equal deleted inserted replaced
20263:00cf2847355d 20264:5dfaaaae784f
141 141
142 bool is_constant (void) const { return true; } 142 bool is_constant (void) const { return true; }
143 143
144 bool is_true (void) const; 144 bool is_true (void) const;
145 145
146 octave_idx_type capacity (void) const { return matrix.capacity (); } 146 GCC_ATTR_DEPRECATED octave_idx_type capacity (void) const { return nzmax (); }
147 147
148 bool print_as_scalar (void) const; 148 bool print_as_scalar (void) const;
149 149
150 void print (std::ostream& os, bool pr_as_read_syntax = false); 150 void print (std::ostream& os, bool pr_as_read_syntax = false);
151 151