Skip to contents

This function creates a nested connectors object from the provided arguments.

Usage

nested_connectors(...)

Arguments

...

Any number of named connectors() objects.

Value

A list with class "nested_connectors" containing the provided arguments.

Examples

nested_connectors(
  trial_1 = connectors(
    sdtm = connector_fs(path = tempdir())
  ),
  trial_2 = connectors(
    sdtm = connector_dbi(drv = RSQLite::SQLite())
  )
)
#> <connector::nested_connectors/list/S7_object>
#>   $trial_1 <connector::connectors>
#>   $trial_2 <connector::connectors>