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 03c6b05 commit a1f15b8Copy full SHA for a1f15b8
+stdlib/private/file_attributes.m
@@ -1,7 +1,4 @@
1
function a = file_attributes(p)
2
-arguments
3
- p {mustBeTextScalar}
4
-end
5
6
a = [];
7
+stdlib/private/strempty.m
@@ -1,10 +1,7 @@
%% STREMPTY is the char / string empty
function y = strempty(s)
- s {mustBeTextScalar}
8
y = strlength(s) == 0;
9
10
+end
+stdlib/private/strlength.m
@@ -3,9 +3,6 @@
% for GNU Octave until it builds in strlength
function L = strlength(s)
if ischar(s)
11
L = length(s);
0 commit comments