Mercurial > hg > octave-nkf
diff src/ov-base-mat.h @ 8734:767ed8cc6634
rename internal issorted and issorted_rows functions to is_sorted and is_sorted_rows
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 12 Feb 2009 15:29:12 -0500 |
parents | 3ef774603887 |
children | eb63fbe60fab |
line wrap: on
line diff
--- a/src/ov-base-mat.h +++ b/src/ov-base-mat.h @@ -124,13 +124,13 @@ sortmode mode = ASCENDING) const { return octave_value (matrix.sort (sidx, dim, mode)); } - sortmode issorted (sortmode mode = UNSORTED) const + sortmode is_sorted (sortmode mode = UNSORTED) const { return matrix.is_sorted (mode); } Array<octave_idx_type> sort_rows_idx (sortmode mode = ASCENDING) const { return matrix.sort_rows_idx (mode); } - sortmode issorted_rows (sortmode mode = UNSORTED) const + sortmode is_sorted_rows (sortmode mode = UNSORTED) const { return matrix.is_sorted_rows (mode); } bool is_matrix_type (void) const { return true; }