This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if[^{]+(?<!\!)=(?!=)[^{]+\{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=head2 method parent | |
method parent(IO::Path:D: --> IO::Path) | |
Removes the last portion of the path and returns the result as a new C<IO::Path>. | |
my $io = IO::Path.new( "/etc/passwd" ); | |
say $io.parent; # "/etc".IO | |
=head2 method child |