= private = protected
has_trailing_separator?(path)
has_trailing_separator?(path) -> bool
# File ext/pathname/lib/pathname.rb, line 126 def has_trailing_separator?(path) # :nodoc: if r = chop_basename(path) pre, basename = r pre.length + basename.length < path.length else false end end