comparison libinterp/octave-value/ov.cc @ 30559:841a10208c38

doc: Use TF for output variable in documentation for isXXX functions in libinterp/ directory. * data.cc, debug.cc, graphics.cc, mappers.cc, sparse.cc, strfns.cc, sysdep.cc, utils.cc, variables.cc, ov-cell.cc, ov-class.cc, ov-fcn-handle.cc, ov-java.cc, ov-null-mat.cc, ov-struct.cc, ov-usr-fcn.cc, ov.cc, octave.cc: Use TF for output variable in documentation for isXXX functions in libinterp/ directory.
author Rik <rik@octave.org>
date Mon, 27 Dec 2021 19:53:35 -0800
parents a5ca02c0ed7d
children 83f9f8bda883
comparison
equal deleted inserted replaced
30558:83aeaba707d8 30559:841a10208c38
3623 %! assert (s, t); 3623 %! assert (s, t);
3624 */ 3624 */
3625 3625
3626 DEFUN (is_sq_string, args, , 3626 DEFUN (is_sq_string, args, ,
3627 doc: /* -*- texinfo -*- 3627 doc: /* -*- texinfo -*-
3628 @deftypefn {} {} is_sq_string (@var{x}) 3628 @deftypefn {} {@var{tf} =} is_sq_string (@var{x})
3629 Return true if @var{x} is a single-quoted character string. 3629 Return true if @var{x} is a single-quoted character string.
3630 @seealso{is_dq_string, ischar} 3630 @seealso{is_dq_string, ischar}
3631 @end deftypefn */) 3631 @end deftypefn */)
3632 { 3632 {
3633 if (args.length () != 1) 3633 if (args.length () != 1)
3646 %!error is_sq_string ('foo', 2) 3646 %!error is_sq_string ('foo', 2)
3647 */ 3647 */
3648 3648
3649 DEFUN (is_dq_string, args, , 3649 DEFUN (is_dq_string, args, ,
3650 doc: /* -*- texinfo -*- 3650 doc: /* -*- texinfo -*-
3651 @deftypefn {} {} is_dq_string (@var{x}) 3651 @deftypefn {} {@var{tf} =} is_dq_string (@var{x})
3652 Return true if @var{x} is a double-quoted character string. 3652 Return true if @var{x} is a double-quoted character string.
3653 @seealso{is_sq_string, ischar} 3653 @seealso{is_sq_string, ischar}
3654 @end deftypefn */) 3654 @end deftypefn */)
3655 { 3655 {
3656 if (args.length () != 1) 3656 if (args.length () != 1)