We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6381368 commit e6f0709Copy full SHA for e6f0709
libinterp/octave-value/ov-lazy-idx.h
@@ -143,6 +143,10 @@ class OCTINTERP_API octave_lazy_index : public octave_base_value
143
void print (std::ostream& os, bool pr_as_read_syntax = false)
144
{ make_value ().print (os, pr_as_read_syntax); }
145
146
+ std::string edit_display (const float_display_format& fmt,
147
+ octave_idx_type i, octave_idx_type j) const
148
+ { return make_value ().edit_display (fmt, i, j); }
149
+
150
void print_info (std::ostream& os, const std::string& prefix) const
151
{ make_value ().print_info (os, prefix); }
152
0 commit comments