Mercurial > hg > octave-lyh
comparison src/Cell.h @ 7618:3209a584e1ac
Further type preservation tests and fix of diag for cell arrays
author | David Bateman <dbateman@free.fr> |
---|---|
date | Thu, 20 Mar 2008 20:54:19 +0100 |
parents | bb0f2353cff5 |
children | 36594d5bbe13 |
comparison
equal
deleted
inserted
replaced
7617:9dca8b03dfe8 | 7618:3209a584e1ac |
---|---|
113 // FIXME | 113 // FIXME |
114 bool is_true (void) const { return false; } | 114 bool is_true (void) const { return false; } |
115 | 115 |
116 static octave_value resize_fill_value (void) { return Matrix (); } | 116 static octave_value resize_fill_value (void) { return Matrix (); } |
117 | 117 |
118 Cell diag (void) const; | |
119 Cell diag (octave_idx_type k) const; | |
120 | |
118 Cell xisalnum (void) const { return map (&octave_value::xisalnum); } | 121 Cell xisalnum (void) const { return map (&octave_value::xisalnum); } |
119 Cell xisalpha (void) const { return map (&octave_value::xisalpha); } | 122 Cell xisalpha (void) const { return map (&octave_value::xisalpha); } |
120 Cell xisascii (void) const { return map (&octave_value::xisascii); } | 123 Cell xisascii (void) const { return map (&octave_value::xisascii); } |
121 Cell xiscntrl (void) const { return map (&octave_value::xiscntrl); } | 124 Cell xiscntrl (void) const { return map (&octave_value::xiscntrl); } |
122 Cell xisdigit (void) const { return map (&octave_value::xisdigit); } | 125 Cell xisdigit (void) const { return map (&octave_value::xisdigit); } |