class Ruby::Marshal::BigNum
- Ruby::Marshal::BigNum
- Ruby::Marshal::StreamObject
- Reference
- Object
Overview
“l” represents a Bignum which is composed of three parts:
sign A single byte containing “+” for a positive value or “-” for a negative value.
length A long indicating the number of bytes of Bignum data follows, divided by two. Multiply the length by two to determine the number of bytes of data that follow.
data Bytes of Bignum data representing the number.