var hasSpaceAvailable : Bool
A boolean value that indicates whether the receiver can be written to.
レシーバが書き込まれることができるかどうかを指し示すブール値。
Availability 有効性
Technology
func write(_ buffer: UnsafePointer
<UInt8
>,
maxLength len: Int
) -> Int
buffer
The data to write. 書き出すことになるデータ。
length
The length of the data buffer, in bytes. データバッファの長さ、バイト数で。
Important 重要
The behavior of this method is undefined if you pass a negative or zero number. このメソッドの挙動は、あなたが負のまたはゼロの数を渡すならば未定義です。
A number indicating the outcome of the operation: 操作の結果を指し示している数:
A positive number indicates the number of bytes written. 正の数は、書き込まれたバイトの数を指し示します。
0
indicates that a fixed-length stream and has reached its capacity.
0
は、固定長ストリームそしてそれの容量に達したことを指し示します。
-1
means that the operation failed; more information about the error can be obtained with stream
.
-1
は、操作が失敗したことを意味します;エラーについてのさらなる情報はstream
で入手できます。
var hasSpaceAvailable : Bool