= private = protected
mountpoint?()
Returns true if self points to a mountpoint.
# File ext/pathname/lib/pathname.rb, line 192 def mountpoint? begin stat1 = self.lstat stat2 = self.parent.lstat stat1.dev != stat2.dev || stat1.ino == stat2.ino rescue Errno::ENOENT false end end