Mercurial > hg > octave-nkf
comparison scripts/deprecated/struct_contains.m @ 11736:9d412bc1d54f release-3-0-x
note version when functions were deprecated
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Fri, 04 Apr 2008 10:17:33 -0400 |
parents | a1dbe9d80eee |
children | 0a362fa8f3c8 |
comparison
equal
deleted
inserted
replaced
11735:24bdee332170 | 11736:9d412bc1d54f |
---|---|
21 ## This function has been deprecated. Use isfield instead. | 21 ## This function has been deprecated. Use isfield instead. |
22 ## @end deftypefn | 22 ## @end deftypefn |
23 | 23 |
24 ## Author: jwe | 24 ## Author: jwe |
25 | 25 |
26 ## Deprecated in version 3.0 | |
27 | |
26 function retval = struct_contains (varargin) | 28 function retval = struct_contains (varargin) |
27 | 29 |
28 retval = isfield (varargin{:}); | 30 retval = isfield (varargin{:}); |
29 | 31 |
30 endfunction | 32 endfunction |