@@ -2763,10 +2763,10 @@ end
2763
2763
@deprecate rsearchindex (s:: AbstractString , t:: AbstractString ) first (findlast (t, s))
2764
2764
@deprecate rsearchindex (s:: AbstractString , t:: AbstractString , i:: Integer ) first (findprev (t, s, i))
2765
2765
2766
- @deprecate searchindex (s:: AbstractString , c:: Char ) first ( findfirst (equalto (c), s) )
2767
- @deprecate searchindex (s:: AbstractString , c:: Char , i:: Integer ) first ( findnext (equalto (c), s, i) )
2768
- @deprecate rsearchindex (s:: AbstractString , c:: Char ) first ( findlast (equalto (c), s) )
2769
- @deprecate rsearchindex (s:: AbstractString , c:: Char , i:: Integer ) first ( findprev (equalto (c), s, i) )
2766
+ @deprecate searchindex (s:: AbstractString , c:: Char ) findfirst (equalto (c), s)
2767
+ @deprecate searchindex (s:: AbstractString , c:: Char , i:: Integer ) findnext (equalto (c), s, i)
2768
+ @deprecate rsearchindex (s:: AbstractString , c:: Char ) findlast (equalto (c), s)
2769
+ @deprecate rsearchindex (s:: AbstractString , c:: Char , i:: Integer ) findprev (equalto (c), s, i)
2770
2770
2771
2771
@deprecate ismatch (r:: Regex , s:: AbstractString ) contains (s, r)
2772
2772
0 commit comments