Open coolbutuseless opened 7 months ago
zstd_info("file.zst"), zstd_info(raw_vec)
zstd_info("file.zst")
zstd_info(raw_vec)
Return a named list:
compressed_size
uncompressed_size
dict_id
NULL
checksum
zstd = FALSE
Implement is_zstd() for a quick T/F check on whether object/buffer/file/connection contains zstd data.
is_zstd()
zstd_info("file.zst")
,zstd_info(raw_vec)
Return a named list:
compressed_size
uncompressed_size
dict_id
either character string for the dictionary orNULL
checksum
either the character string xxhash stored in the bitstream orNULL
NULL
if not a compressed object? Or justzstd = FALSE
?