forked from TileDB-Inc/TileDB-R
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsub-tiledb_config-ANY-method.Rd
More file actions
37 lines (33 loc) · 960 Bytes
/
Copy pathsub-tiledb_config-ANY-method.Rd
File metadata and controls
37 lines (33 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/Config.R
\name{[,tiledb_config,ANY-method}
\alias{[,tiledb_config,ANY-method}
\alias{[,tiledb_config}
\alias{[,tiledb_config-method}
\alias{[,tiledb_config,ANY,tiledb_config-method}
\alias{[,tiledb_config,ANY,ANY,tiledb_config-method}
\title{Gets a config parameter value}
\usage{
\S4method{[}{tiledb_config,ANY}(x, i, j, ..., drop = FALSE)
}
\arguments{
\item{x}{A \code{tiledb_config} object}
\item{i}{parameter key string}
\item{j}{parameter key string, currently unused.}
\item{...}{Extra parameter for method signature, currently unused.}
\item{drop}{Optional logical switch to drop dimensions, default FALSE, currently unused.}
}
\value{
A config string value if parameter exists, else NA
}
\description{
Gets a config parameter value
}
\examples{
\dontshow{
ctx <- tiledb_ctx(limitTileDBCores())
}
cfg <- tiledb_config()
cfg["sm.tile_cache_size"]
cfg["does_not_exist"]
}