Next:
FileDescriptor-built ins
, Previous:
FileDescriptor-basic
, Up:
FileDescriptor
1.73.6 FileDescriptor: binary I/O
nextByteArray: numBytes
Return the next numBytes bytes in the byte array
nextDouble
Return the next 64-bit float in the byte array
nextFloat
Return the next 32-bit float in the byte array
nextLong
Return the next 4 bytes in the byte array, interpreted as a 32 bit signed int
nextLongLong
Return the next 8 bytes in the byte array, interpreted as a 64 bit signed int
nextPutByte: anInteger
Store anInteger (range: -128..255) on the byte array
nextPutDouble: aDouble
Store aDouble as a 64-bit float in the byte array
nextPutFloat: aFloat
Return the next 32-bit float in the byte array
nextPutInt64: anInteger
Store anInteger (range: -2^63..2^64-1) on the byte array as 4 bytes
nextPutLong: anInteger
Store anInteger (range: -2^31..2^32-1) on the byte array as 4 bytes
nextPutShort: anInteger
Store anInteger (range: -32768..65535) on the byte array as 2 bytes
nextShort
Return the next 2 bytes in the byte array, interpreted as a 16 bit signed int
nextSignedByte
Return the next byte in the byte array, interpreted as a 8 bit signed number
nextUint64
Return the next 8 bytes in the byte array, interpreted as a 64 bit unsigned int
nextUlong
Return the next 4 bytes in the byte array, interpreted as a 32 bit unsigned int
nextUshort
Return the next 2 bytes in the byte array, interpreted as a 16 bit unsigned int