comparison libinterp/octave-value/ov-usr-fcn.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 a61e1a0f6024
children 83f9f8bda883
comparison
equal deleted inserted replaced
30558:83aeaba707d8 30559:841a10208c38
903 return (k == 1 || k <= nargout) && ! val_in_table (ignored, k); 903 return (k == 1 || k <= nargout) && ! val_in_table (ignored, k);
904 } 904 }
905 905
906 DEFMETHOD (isargout, interp, args, , 906 DEFMETHOD (isargout, interp, args, ,
907 doc: /* -*- texinfo -*- 907 doc: /* -*- texinfo -*-
908 @deftypefn {} {} isargout (@var{k}) 908 @deftypefn {} {@var{tf} =} isargout (@var{k})
909 Within a function, return a logical value indicating whether the argument 909 Within a function, return a logical value indicating whether the argument
910 @var{k} will be assigned to a variable on output. 910 @var{k} will be assigned to a variable on output.
911 911
912 If the result is false, the argument has been ignored during the function 912 If the result is false, the argument has been ignored during the function
913 call through the use of the tilde (~) special output argument. Functions 913 call through the use of the tilde (~) special output argument. Functions