In role IO::Socket§
See primary documentation in context for method read
method read(IO::Socket: Int(Cool) )
Reads $bytes
bytes from the socket and returns them in a Blob
.
The same caveat of mixed binary and non-binary reads described in method recv applies.
Fails if the socket is not connected.
In IO::CatHandle§
See primary documentation in context for method read
method read(IO::CatHandle: Int(Cool) = 65536 --> Buf)
Reads up to $bytes
bytes from the handle and returns them in a Buf
. $bytes
defaults to an implementation-specific value (in Rakudo, the value of $*DEFAULT-READ-ELEMS
, which by default is set to 65536
). It is permitted to call this method on handles that are not in binary mode.
(my = 'foo'.IO).spurt: 'meow';(my = 'bar'.IO).spurt: Blob.new: 4, 5, 6;with IO::CatHandle.new: :bin, ,# Non-binary mode is OK too:with IO::CatHandle.new: ,
In IO::Handle§
See primary documentation in context for method read
method read(IO::Handle: Int(Cool) = 65536 --> Buf)
Binary reading; reads and returns up to $bytes
bytes from the filehandle. $bytes
defaults to an implementation-specific value (in Rakudo, the value of $*DEFAULT-READ-ELEMS
, which by default is set to 65536
). This method can be called even when the handle is not in binary mode.
(my = 'foo'.IO).spurt: 'I ♥ Raku';given .open