paws.common (version 0.1.1)

populate: Populate a list with data from another list

Description

populate copies data from a list (e.g. input by a user) to another list with a similar shape. The second list, called the interface, will generally also contain extra metadata for making API requests, such as names or types.

Usage

populate(input, interface)

Arguments

input

A list with data to copy.

interface

A list of a similar shape to copy data into.

Examples

Run this code
# NOT RUN {
# Make an interface with metadata, e.g. type.
interface <- tag_add(list(foo = c(), bar = c()), list(type = "structure"))

# Combine data and the metadata from the interface.
populate(list(foo = 1, bar = 2), interface)

# }

Run the code above in your browser using DataCamp Workspace