See Original text in context
method IO(IO::Path: --> IO::Path)
Returns the invocant.
See Original text in context
method IO(IO::Pipe: --> IO::Path)
Returns an IO::Path type object.
See Original text in context
method IO(Dateish: --> IO::Path)
Returns an IO::Path object representing the stringified value of the Dateish object:
Date.today.IO.say; # OUTPUT: «"2016-10-03".IO»DateTime.now.IO.say; # OUTPUT: «"2016-10-03T11:14:47.977994-04:00".IO»
PORTABILITY NOTE: some operating systems (e.g. Windows) do not permit colons (:
) in filenames, which would be present in IO::Path
created from a DateTime object.
See Original text in context
Returns a handle of the file that's being watched.
See Original text in context
method IO()
Returns the corresponding resource as an IO::Path
, which can effectively be used as such.
See Original text in context
method IO(IO::Handle:)
Alias for .path
See Original text in context
method IO(IO::Special: --> IO::Special)
Returns the invocant.
say .path.IO.what; # OUTPUT: «<STDIN>»say .path.what; # OUTPUT: «<STDIN>»
See Original text in context
method IO(--> IO::Path)
Coerces the invocant to IO::Path.
.say for '.'.IO.dir; # gives a directory listing
See Original text in context
method IO(IO::CatHandle:)
Alias for .path