Sha256: f60295d82f18ade4133037ed93753fb51dc93e0f185880f29d6145e63dd6edd5
Contents?: true
Size: 236 Bytes
Versions: 13
Compression:
Stored size: 236 Bytes
Contents
Get the bytes of a String: "hello".bytes # => [104, 101, 108, 108, 111] Get a byte from a String: str = "hello" str.getbyte(0) # => 104 Sets a byte in a String: str.setbyte(0,0x41) str # => "Aello"
Version data entries
13 entries across 13 versions & 1 rubygems