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 426f59d commit a99bbceCopy full SHA for a99bbce
src/util.jl
@@ -39,7 +39,7 @@ end
39
Base.replace(str::DenseStringViewAndSub, pat_repl::Pair{<:AbstractChar}; count::Integer=typemax(Int)) =
40
replace(str, isequal(first(pat_repl)) => last(pat_repl); count=count)
41
42
-Base.replace(str::DenseStringViewAndSub, pat_repl::Pair{<:Union{Tuple{Vararg{<:AbstractChar}},
+Base.replace(str::DenseStringViewAndSub, pat_repl::Pair{<:Union{Tuple{Vararg{AbstractChar}},
43
AbstractVector{<:AbstractChar},Set{<:AbstractChar}}};
44
count::Integer=typemax(Int)) =
45
replace(str, in(first(pat_repl)) => last(pat_repl), count=count)
0 commit comments