method t
1 | class IO::CatHandle |
1.1 | (IO::CatHandle) method t |
2 | class IO::Handle |
2.1 | (IO::Handle) method t |
Documentation for method t
assembled from the following types:
class IO::CatHandle
From IO::CatHandle
(IO::CatHandle) method t
Defined as:
method t(IO::CatHandle: --> Bool)
Calls .t
, which tells if the handle is a TTY, on the currently active source handle and returns the result. If the source handle queue has been exhausted, returns False
.
(my = 'foo'.IO).spurt: 'foo';with IO::CatHandle.new: ,
class IO::Handle
From IO::Handle
(IO::Handle) method t
Defined as:
method t(IO::Handle: --> Bool)
Returns True
if the handle is opened to a TTY, False
otherwise.