make_placeholder_fun {DBItest} | R Documentation |
Create a function that creates n placeholders
Description
For internal use by the placeholder_format
tweak.
Usage
make_placeholder_fun(pattern)
Arguments
pattern |
|
Value
[function(n)]
A function with one argument n
that
returns a vector of length n
with placeholders of the specified format.
Examples
body(DBItest:::make_placeholder_fun("?"))
DBItest:::make_placeholder_fun("?")(2)
DBItest:::make_placeholder_fun("$1")(3)
DBItest:::make_placeholder_fun(":name")(5)
[Package DBItest version 1.7.0 Index]