File tree Expand file tree Collapse file tree 1 file changed +20
-5
lines changed Expand file tree Collapse file tree 1 file changed +20
-5
lines changed Original file line number Diff line number Diff line change @@ -25,22 +25,17 @@ import Base:
25
25
convert,
26
26
getindex,
27
27
isvalid,
28
- lcfirst,
29
28
length,
30
29
lowercase,
31
30
map,
32
- next,
33
31
nextind,
34
32
pointer,
35
33
prevind,
36
34
reverse,
37
35
reverseind,
38
- rsearch,
39
- search,
40
36
show,
41
37
sizeof,
42
38
string,
43
- ucfirst,
44
39
unsafe_convert,
45
40
uppercase,
46
41
write
@@ -52,6 +47,26 @@ import Compat:
52
47
codeunit,
53
48
ncodeunits
54
49
50
+ if isdefined (Base, :lcfirst )
51
+ import Base: lcfirst
52
+ end
53
+
54
+ if isdefined (Base, :next )
55
+ import Base: next
56
+ end
57
+
58
+ if isdefined (Base, :rsearch )
59
+ import Base: rsearch
60
+ end
61
+
62
+ if isdefined (Base, :search )
63
+ import Base: search
64
+ end
65
+
66
+ if isdefined (Base, :ucfirst )
67
+ import Base: ucfirst
68
+ end
69
+
55
70
if isdefined (Base, :iterate )
56
71
import Base: iterate
57
72
end
You can’t perform that action at this time.
0 commit comments