This function creates a nested connectors object from the provided arguments.
Arguments
- ...
Any number of named
connectors()objects.
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>
