Method: Path#absolute?

Defined in:
lib/path/predicates.rb

#absolute?Boolean

Whether a path is absolute.

Returns:

  • (Boolean)


5
6
7
# File 'lib/path/predicates.rb', line 5

def absolute?
  is_absolute?(@path)
end