method tell
| 1 | class IO::CatHandle |
| 1.1 | (IO::CatHandle) method tell |
| 2 | class IO::Handle |
| 2.1 | (IO::Handle) method tell |
Documentation for method tell assembled from the following types:
class IO::CatHandle
From IO::CatHandle
(IO::CatHandle) method tell
Defined as:
method tell(IO::CatHandle: --> Int)
Calls .tell on the currently active source handle and returns the result. Returns Nil if the source handle queue has been exhausted.
(my = 'foo'.IO).spurt: 'foo';(my = 'bar'.IO).spurt: 'bar';with IO::CatHandle.new: ,
class IO::Handle
From IO::Handle
(IO::Handle) method tell
Defined as:
method tell(IO::Handle: --> Int)
Return the current position of the file pointer in bytes.