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.
2 parents 63b3a4f + 5b23de9 commit d86dcecCopy full SHA for d86dcec
src/FilePathsBase.jl
@@ -66,6 +66,7 @@ abstract type AbstractPath <: AbstractString end
66
67
# Required methods for subtype of AbstractString
68
Compat.lastindex(p::AbstractPath) = lastindex(String(p))
69
+Compat.ncodeunits(p::AbstractPath) = ncodeunits(String(p))
70
if VERSION >= v"0.7-"
71
Base.iterate(p::AbstractPath) = iterate(String(p))
72
Base.iterate(p::AbstractPath, state::Int) = iterate(String(p), state)
0 commit comments