write_hex | R Documentation |
Write hexadecimal string as raw bytes
write_hex(con, x, endian = NULL)
con |
Connection object or raw vector. When con is a raw vector, new
data will be appended to the vector and returned.
Connection objects can be
created with |
x |
vector to write |
endian |
Ordering of bytes within the file when reading multi-byte values.
Possible values: 'big' or 'little'.
Default: NULL indicates that
endian option should be retrieved from the connection object if possible
(where the user has used |
If con
is a connection then this connection is returned invisibly.
If con
is a raw vector then new data is appended to this vector
Other data output functions:
fprintf()
,
write_f64()
,
write_raw()
,
write_uint8()
,
write_utf8()
con <- file(tempfile(), "wb")
write_hex(con, c("ff80", "0102"))
close(con)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.