method devnull
| 1 | class IO::Spec::Unix |
| 1.1 | (IO::Spec::Unix) method devnull |
| 2 | class IO::Spec::Win32 |
| 2.1 | (IO::Spec::Win32) method devnull |
Documentation for method devnull assembled from the following types:
class IO::Spec::Unix
From IO::Spec::Unix
(IO::Spec::Unix) method devnull
Defined as:
method devnull(--> Str)
Returns the string "/dev/null" representing the "Null device":
.devnull.IO.spurt: "foo bar baz";
class IO::Spec::Win32
From IO::Spec::Win32
(IO::Spec::Win32) method devnull
Defined as:
method devnull(--> Str)
Returns the string "nul" representing the "Null device":
.devnull.IO.spurt: "foo bar baz";