Documentation for method SPEC
assembled from the following pages:
Class: IO::Path §
From IO::Path
(IO::Path) method SPEC §
Defined as:
method SPEC(IO::Path: --> IO::Spec)
Returns the IO::Spec object that was (implicitly) specified at object creation time.
my = IO::Path.new("/bin/bash");say .SPEC; # OUTPUT: «(Unix)» say .SPEC.dir-sep; # OUTPUT: «/»