comparison libinterp/octave-value/ov-perm.h @ 23586:f6c5db0a02e7

maint: Deprecate is_numeric_type and replace with isnumeric. * ov.h (is_numeric_type): Use OCTAVE_DEPRECATED macro around function. * ov.h (isnumeric): New function. * make_int.cc, besselj.cc, cellfun.cc, data.cc, dot.cc, file-io.cc, graphics.cc, load-path.cc, lookup.cc, lu.cc, mex.cc, mgorth.cc, oct-hist.cc, pr-output.cc, schur.cc, sparse.cc, sqrtm.cc, sub2ind.cc, typecast.cc, utils.cc, chol.cc, qr.cc, ov-base-diag.h, ov-base-mat.h, ov-base-scalar.h, ov-base-sparse.h, ov-base.cc, ov-base.h, ov-bool-mat.cc, ov-bool-mat.h, ov-bool-sparse.h, ov-bool.h, ov-cell.h, ov-class.cc, ov-fcn-inline.cc, ov-lazy-idx.h, ov-perm.h, ov-range.h, ov-str-mat.h, ov-usr-fcn.cc, bp-table.cc: Replace instances of is_numeric_type with isnumeric.
author Rik <rik@octave.org>
date Tue, 13 Jun 2017 10:20:55 -0700
parents 570170b6eb09
children 0549061d35b9
comparison
equal deleted inserted replaced
23585:570170b6eb09 23586:f6c5db0a02e7
108 108
109 bool is_perm_matrix (void) const { return true; } 109 bool is_perm_matrix (void) const { return true; }
110 110
111 bool is_matrix_type (void) const { return true; } 111 bool is_matrix_type (void) const { return true; }
112 112
113 bool is_numeric_type (void) const { return true; } 113 bool isnumeric (void) const { return true; }
114 114
115 bool is_defined (void) const { return true; } 115 bool is_defined (void) const { return true; }
116 116
117 bool is_constant (void) const { return true; } 117 bool is_constant (void) const { return true; }
118 118