blob (version 1.1.0)

blob: Construct a blob object

Description

new_blob is a low-level constructor that takes a list of raw vectors. blob constructs a blob from individual raw vectors, and as.blob is a S3 generic that converts existing objects.

Usage

blob(...)

new_blob(x)

as.blob(x, ...)

Arguments

...

Individual raw vectors

x

A list of raw vectors, or other object to coerce

Examples

Run this code
x1 <- charToRaw("Good morning")
x2 <- as.raw(c(0x48, 0x65, 0x6c, 0x6c, 0x6f))

new_blob(list(x1, x2))
blob(x1, x2)

as.blob(c("Good morning", "Good evening"))

Run the code above in your browser using DataCamp Workspace