From d2734fddd27c01a2c784734fdd49852cbb9f7950 Mon Sep 17 00:00:00 2001 From: Constantinos Giachalis Date: Thu, 16 Oct 2025 16:21:02 +0300 Subject: [PATCH 01/10] Fix docs Ctx.R --- R/Ctx.R | 4 ++-- man/tiledb_set_context.Rd | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/R/Ctx.R b/R/Ctx.R index 8a79361a48..424532d0b2 100644 --- a/R/Ctx.R +++ b/R/Ctx.R @@ -1,6 +1,6 @@ # MIT License # -# Copyright (c) 2017-2023 TileDB Inc. +# Copyright (c) 2017-2025 TileDB Inc. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -55,7 +55,7 @@ getContext <- function() tiledb_get_context() #' #' @param ctx A TileDB context object #' @return NULL, invisibly. The function is invoked for the side-effect of -#' storing the VFS object. +#' storing the Ctx object. #' @export tiledb_set_context <- function(ctx) { stopifnot(`The 'ctx' argument must be a tiledb_ctx object` = is(ctx, "tiledb_ctx")) diff --git a/man/tiledb_set_context.Rd b/man/tiledb_set_context.Rd index 8933d7de52..77fe0279df 100644 --- a/man/tiledb_set_context.Rd +++ b/man/tiledb_set_context.Rd @@ -11,7 +11,7 @@ tiledb_set_context(ctx) } \value{ NULL, invisibly. The function is invoked for the side-effect of -storing the VFS object. +storing the Ctx object. } \description{ Store a TileDB context object in the package cache From 2162e9bf2dd6a85f315de9f04ea57c1fd6bd3385 Mon Sep 17 00:00:00 2001 From: Constantinos Giachalis Date: Thu, 16 Oct 2025 16:21:44 +0300 Subject: [PATCH 02/10] Fix docs Group.R --- R/Group.R | 5 +++-- man/tiledb_group_has_metadata.Rd | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/R/Group.R b/R/Group.R index a10c953288..8d712d84a5 100644 --- a/R/Group.R +++ b/R/Group.R @@ -1,6 +1,6 @@ # MIT License # -# Copyright (c) 2022-2024 TileDB Inc. +# Copyright (c) 2022-2025 TileDB Inc. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -262,7 +262,8 @@ tiledb_group_get_metadata <- function(grp, key) { ##' \code{tiledb_group()} ##' @param key A character value with they index under which the ##' data will be written -##' @return A boolean value indicating with the object is present +##' @return A logical value indicating if the given key exists in the +##' metadata of the given group ##' @export tiledb_group_has_metadata <- function(grp, key) { stopifnot( diff --git a/man/tiledb_group_has_metadata.Rd b/man/tiledb_group_has_metadata.Rd index 0b2ce3c59d..039358a3f0 100644 --- a/man/tiledb_group_has_metadata.Rd +++ b/man/tiledb_group_has_metadata.Rd @@ -14,7 +14,8 @@ tiledb_group_has_metadata(grp, key) data will be written} } \value{ -A boolean value indicating with the object is present +A logical value indicating if the given key exists in the +metadata of the given group } \description{ Checks for Metadata in a TileDB Group From afe8b8d016da8c347d66c909da75e8b124a136cb Mon Sep 17 00:00:00 2001 From: Constantinos Giachalis Date: Thu, 16 Oct 2025 16:22:36 +0300 Subject: [PATCH 03/10] Fix docs Metadata.R --- R/Metadata.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/Metadata.R b/R/Metadata.R index 92327fd8f8..c9794f57df 100644 --- a/R/Metadata.R +++ b/R/Metadata.R @@ -1,6 +1,6 @@ # MIT License # -# Copyright (c) 2017-2023 TileDB Inc. +# Copyright (c) 2017-2025 TileDB Inc. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal From 19545a21cec134559d619e50a0733940b0b5f524 Mon Sep 17 00:00:00 2001 From: Constantinos Giachalis Date: Thu, 16 Oct 2025 16:23:23 +0300 Subject: [PATCH 04/10] Fix docs VFS.R --- R/VFS.R | 4 ++-- man/tiledb_vfs_is_bucket.Rd | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/R/VFS.R b/R/VFS.R index 35454dd799..ad168906d3 100644 --- a/R/VFS.R +++ b/R/VFS.R @@ -1,6 +1,6 @@ # MIT License # -# Copyright (c) 2017-2024 TileDB Inc. +# Copyright (c) 2017-2025 TileDB Inc. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -102,7 +102,7 @@ tiledb_vfs_remove_bucket <- function(uri, vfs = tiledb_get_vfs()) { #' cfg["vfs.s3.region"] <- "us-west-1" #' ctx <- tiledb_ctx(cfg) #' vfs <- tiledb_vfs() -#' tiledb_vfs_is_bucket(vfs, "s3://tiledb-public-us-west-1/test-array-4x4") +#' tiledb_vfs_is_bucket("s3://tiledb-public-us-west-1/test-array-4x4", vfs = vfs) #' } tiledb_vfs_is_bucket <- function(uri, vfs = tiledb_get_vfs()) { stopifnot( diff --git a/man/tiledb_vfs_is_bucket.Rd b/man/tiledb_vfs_is_bucket.Rd index 249e8aa1b6..53fe2b17cf 100644 --- a/man/tiledb_vfs_is_bucket.Rd +++ b/man/tiledb_vfs_is_bucket.Rd @@ -26,6 +26,6 @@ cfg <- tiledb_config() cfg["vfs.s3.region"] <- "us-west-1" ctx <- tiledb_ctx(cfg) vfs <- tiledb_vfs() -tiledb_vfs_is_bucket(vfs, "s3://tiledb-public-us-west-1/test-array-4x4") +tiledb_vfs_is_bucket("s3://tiledb-public-us-west-1/test-array-4x4", vfs = vfs) } } From 6563ff68eec59338511f7c876e795e7a58901685 Mon Sep 17 00:00:00 2001 From: Constantinos Giachalis Date: Thu, 20 Aug 2026 18:57:38 +0300 Subject: [PATCH 05/10] Fix rebase conficts --- R/Query.R | 22 +++++++++---------- man/tiledb_query.Rd | 8 +++---- man/tiledb_query_apply_aggregate.Rd | 4 ++-- man/tiledb_query_result_buffer_elements.Rd | 2 +- ...tiledb_query_result_buffer_elements_vec.Rd | 2 +- man/tiledb_query_set_buffer.Rd | 2 +- man/tiledb_query_set_subarray.Rd | 2 +- man/tiledb_query_type.Rd | 2 +- 8 files changed, 22 insertions(+), 22 deletions(-) diff --git a/R/Query.R b/R/Query.R index a80929e1c2..5f5fba9a05 100644 --- a/R/Query.R +++ b/R/Query.R @@ -1,6 +1,6 @@ # MIT License # -# Copyright (c) 2017-2024 TileDB Inc. +# Copyright (c) 2017-2025 TileDB Inc. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -31,13 +31,13 @@ setClass("tiledb_query", ## could add arr of type 'ANY' (using shortcut to not have to deal with collate order) ## if array was needed for query object -#' Creates a 'tiledb_query' object +#' Creates a `tiledb_query` object #' #' @param array A TileDB Array object #' @param type A character value that must be one of 'READ', 'WRITE', or -#' 'DELETE' (for TileDB >= 2.12.0) +#' 'DELETE', 'MODIFY_EXCLUSIVE' (for TileDB >= 2.12.0) #' @param ctx (optional) A TileDB Ctx object -#' @return 'tiledb_query' object +#' @return A `tiledb_query` object #' @export tiledb_query tiledb_query <- function( array, @@ -59,7 +59,7 @@ tiledb_query <- function( #' Return TileDB Query type #' #' @param query A TileDB Query object -#' @return A character value, either 'READ' or 'WRITE' +#' @return A character value, either 'READ', 'WRITE', 'DELETE' or 'MODIFY_EXCLUSIVE' #' @export tiledb_query_type <- function(query) { stopifnot(`Argument 'query' must be a tiledb_query object` = is(query, "tiledb_query")) @@ -99,7 +99,7 @@ tiledb_query_get_layout <- function(query) { #' Set subarray for TileDB Query object #' #' @param query A TileDB Query object -#' @param subarray A subarry vector object +#' @param subarray A subarray vector object #' @param type An optional type as a character, if missing type is #' inferred from the vector. #' @return The modified query object, invisibly @@ -123,7 +123,7 @@ tiledb_query_set_subarray <- function(query, subarray, type) { #' @param query A TileDB Query object #' @param attr A character value containing the attribute #' @param buffer A vector providing the query buffer -#' @return The modified query object, invisisibly +#' @return The modified query object, invisibly #' @export tiledb_query_set_buffer <- function(query, attr, buffer) { stopifnot( @@ -221,7 +221,7 @@ tiledb_query_set_buffer_ptr_char <- function(query, attr, bufptr) { #' @param ncells A number of elements (not bytes) #' @param nullable Optional boolean parameter indicating whether missing values #' are allowed (for which another column is allocated), default is FALSE -#' @param varnum Option integer parameter for the number of elements per variable, +#' @param varnum Optional integer parameter for the number of elements per variable, #' default is one #' @return An external pointer to the allocated buffer object #' @export @@ -378,7 +378,7 @@ tiledb_query_status <- function(query) { #' @param attr A character value containing the attribute #' @return A integer with the number of elements in the results buffer #' for the given attribute -#' @seealso tiledb_query_result_buffer_elements_vec +#' @seealso [tiledb_query_result_buffer_elements_vec] #' @export tiledb_query_result_buffer_elements <- function(query, attr) { stopifnot( @@ -407,7 +407,7 @@ tiledb_query_result_buffer_elements <- function(query, attr) { #' for fixed-size attribute or dimensions), the number elements in the results #' buffer for the given attribute, and (if nullable) a third element with the validity #' buffer size. -#' @seealso tiledb_query_result_buffer_elements +#' @seealso [tiledb_query_result_buffer_elements] #' @export tiledb_query_result_buffer_elements_vec <- function( query, @@ -677,7 +677,7 @@ tiledb_query_ctx <- function(query) { # query@arr # } -##' Run an aggregate oprtation on the given query attribute +##' Run an aggregate operation on the given query attribute ##' ##' @param query A TileDB Query object ##' @param attrname The name of an attribute diff --git a/man/tiledb_query.Rd b/man/tiledb_query.Rd index 6f132a1900..f41ae77c93 100644 --- a/man/tiledb_query.Rd +++ b/man/tiledb_query.Rd @@ -2,7 +2,7 @@ % Please edit documentation in R/Query.R \name{tiledb_query} \alias{tiledb_query} -\title{Creates a 'tiledb_query' object} +\title{Creates a \code{tiledb_query} object} \usage{ tiledb_query( array, @@ -19,13 +19,13 @@ tiledb_query( \item{array}{A TileDB Array object} \item{type}{A character value that must be one of 'READ', 'WRITE', or -'DELETE' (for TileDB >= 2.12.0)} +'DELETE', 'MODIFY_EXCLUSIVE' (for TileDB >= 2.12.0)} \item{ctx}{(optional) A TileDB Ctx object} } \value{ -'tiledb_query' object +A \code{tiledb_query} object } \description{ -Creates a 'tiledb_query' object +Creates a \code{tiledb_query} object } diff --git a/man/tiledb_query_apply_aggregate.Rd b/man/tiledb_query_apply_aggregate.Rd index b2e4daa4df..3a9688d64b 100644 --- a/man/tiledb_query_apply_aggregate.Rd +++ b/man/tiledb_query_apply_aggregate.Rd @@ -2,7 +2,7 @@ % Please edit documentation in R/Query.R \name{tiledb_query_apply_aggregate} \alias{tiledb_query_apply_aggregate} -\title{Run an aggregate oprtation on the given query attribute} +\title{Run an aggregate operation on the given query attribute} \usage{ tiledb_query_apply_aggregate( query, @@ -24,5 +24,5 @@ tiledb_query_apply_aggregate( The value of the aggregation } \description{ -Run an aggregate oprtation on the given query attribute +Run an aggregate operation on the given query attribute } diff --git a/man/tiledb_query_result_buffer_elements.Rd b/man/tiledb_query_result_buffer_elements.Rd index 92d8754b42..348d4cf0b6 100644 --- a/man/tiledb_query_result_buffer_elements.Rd +++ b/man/tiledb_query_result_buffer_elements.Rd @@ -28,5 +28,5 @@ As this function was first made available when only a scalar (corresponding to the second result) was returned, we still return that value. } \seealso{ -tiledb_query_result_buffer_elements_vec +\link{tiledb_query_result_buffer_elements_vec} } diff --git a/man/tiledb_query_result_buffer_elements_vec.Rd b/man/tiledb_query_result_buffer_elements_vec.Rd index b0de33b139..81cfabd9e6 100644 --- a/man/tiledb_query_result_buffer_elements_vec.Rd +++ b/man/tiledb_query_result_buffer_elements_vec.Rd @@ -31,5 +31,5 @@ In the case of a nullable attribute, a third element is returned with the size o the validity buffer. } \seealso{ -tiledb_query_result_buffer_elements +\link{tiledb_query_result_buffer_elements} } diff --git a/man/tiledb_query_set_buffer.Rd b/man/tiledb_query_set_buffer.Rd index 9c9500eece..1d5e1e3d56 100644 --- a/man/tiledb_query_set_buffer.Rd +++ b/man/tiledb_query_set_buffer.Rd @@ -14,7 +14,7 @@ tiledb_query_set_buffer(query, attr, buffer) \item{buffer}{A vector providing the query buffer} } \value{ -The modified query object, invisisibly +The modified query object, invisibly } \description{ This function allocates query buffers directly from R vectors in diff --git a/man/tiledb_query_set_subarray.Rd b/man/tiledb_query_set_subarray.Rd index 8cabef8986..977a448ba9 100644 --- a/man/tiledb_query_set_subarray.Rd +++ b/man/tiledb_query_set_subarray.Rd @@ -9,7 +9,7 @@ tiledb_query_set_subarray(query, subarray, type) \arguments{ \item{query}{A TileDB Query object} -\item{subarray}{A subarry vector object} +\item{subarray}{A subarray vector object} \item{type}{An optional type as a character, if missing type is inferred from the vector.} diff --git a/man/tiledb_query_type.Rd b/man/tiledb_query_type.Rd index 5f4a2ae067..8149485e18 100644 --- a/man/tiledb_query_type.Rd +++ b/man/tiledb_query_type.Rd @@ -10,7 +10,7 @@ tiledb_query_type(query) \item{query}{A TileDB Query object} } \value{ -A character value, either 'READ' or 'WRITE' +A character value, either 'READ', 'WRITE', 'DELETE' or 'MODIFY_EXCLUSIVE' } \description{ Return TileDB Query type From 66bdedc48235c86087c9e06a4b418abf5d8b427a Mon Sep 17 00:00:00 2001 From: Constantinos Giachalis Date: Thu, 16 Oct 2025 16:25:31 +0300 Subject: [PATCH 06/10] Fix docs TileDBArray.R --- R/TileDBArray.R | 10 +++++----- man/sub-tiledb_array-ANY-method.Rd | 4 ++-- man/subset-tiledb_array-ANY-ANY-ANY-method.Rd | 2 +- man/tiledb_array-class.Rd | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/R/TileDBArray.R b/R/TileDBArray.R index 439afb6bda..5cec3fcc82 100644 --- a/R/TileDBArray.R +++ b/R/TileDBArray.R @@ -1,6 +1,6 @@ # MIT License # -# Copyright (c) 2017-2024 TileDB Inc. +# Copyright (c) 2017-2025 TileDB Inc. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -28,7 +28,7 @@ #' based on a refactored implementation utilising newer TileDB features. #' #' @slot ctx A TileDB context object -#' @slot uri A character despription with the array URI +#' @slot uri A character description with the array URI #' @slot is.sparse A logical value whether the array is sparse or not #' @slot attrs A character vector to select particular column #' \sQuote{attributes}; default is an empty character vector implying @@ -502,9 +502,9 @@ setValidity("tiledb_array", function(object) { #' #' Heterogeneous domains are supported, including timestamps and characters. #' -#' This function may still still change; the current implementation should be +#' This function may still change; the current implementation should be #' considered as an initial draft. -#' @param x tiledb_array object +#' @param x A `tiledb_array` object. #' @param i optional row index expression which can be a list in which case #' minimum and maximum of each list element determine a range; multiple list #' elements can be used to supply multiple ranges. @@ -1252,7 +1252,7 @@ setMethod( #' as part of the left-hand side object, or as part of the data.frame #' provided appropriate column names. #' -#' This function may still still change; the current implementation should be +#' This function may still change; the current implementation should be #' considered as an initial draft. #' @param x sparse or dense TileDB array object #' @param i parameter row index diff --git a/man/sub-tiledb_array-ANY-method.Rd b/man/sub-tiledb_array-ANY-method.Rd index cc60f40f1c..a4422f252a 100644 --- a/man/sub-tiledb_array-ANY-method.Rd +++ b/man/sub-tiledb_array-ANY-method.Rd @@ -11,7 +11,7 @@ \S4method{[}{tiledb_array,ANY}(x, i, j, ..., drop = FALSE) } \arguments{ -\item{x}{tiledb_array object} +\item{x}{A \code{tiledb_array} object.} \item{i}{optional row index expression which can be a list in which case minimum and maximum of each list element determine a range; multiple list @@ -33,6 +33,6 @@ The resulting elements in the selected format Heterogeneous domains are supported, including timestamps and characters. } \details{ -This function may still still change; the current implementation should be +This function may still change; the current implementation should be considered as an initial draft. } diff --git a/man/subset-tiledb_array-ANY-ANY-ANY-method.Rd b/man/subset-tiledb_array-ANY-ANY-ANY-method.Rd index 189c785faa..f74b5f6f14 100644 --- a/man/subset-tiledb_array-ANY-ANY-ANY-method.Rd +++ b/man/subset-tiledb_array-ANY-ANY-ANY-method.Rd @@ -33,7 +33,7 @@ For sparse matrices, row and column indices can either be supplied as part of the left-hand side object, or as part of the data.frame provided appropriate column names. -This function may still still change; the current implementation should be +This function may still change; the current implementation should be considered as an initial draft. } \examples{ diff --git a/man/tiledb_array-class.Rd b/man/tiledb_array-class.Rd index 9abfc8f5a8..2c856077a9 100644 --- a/man/tiledb_array-class.Rd +++ b/man/tiledb_array-class.Rd @@ -14,7 +14,7 @@ based on a refactored implementation utilising newer TileDB features. \describe{ \item{\code{ctx}}{A TileDB context object} -\item{\code{uri}}{A character despription with the array URI} +\item{\code{uri}}{A character description with the array URI} \item{\code{is.sparse}}{A logical value whether the array is sparse or not} From 38cd3f92ef0dc73ac082853797f3afde5658d2b9 Mon Sep 17 00:00:00 2001 From: Constantinos Giachalis Date: Tue, 21 Oct 2025 13:34:41 +0300 Subject: [PATCH 07/10] Fix docs TileDBArray.R (v2) --- R/TileDBArray.R | 2 +- man/query_layout-tiledb_array-method.Rd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/R/TileDBArray.R b/R/TileDBArray.R index 5cec3fcc82..8cc8835b23 100644 --- a/R/TileDBArray.R +++ b/R/TileDBArray.R @@ -1802,7 +1802,7 @@ setGeneric( #' Retrieve query_layout values for the array #' #' A \code{tiledb_array} object can have a corresponding query with a given -#' layout given layout. This methods returns the selection value for +#' layout. This method returns the selection value for #' \sQuote{query_layout} as a character value. #' @param object A \code{tiledb_array} object #' @return A character value describing the query layout diff --git a/man/query_layout-tiledb_array-method.Rd b/man/query_layout-tiledb_array-method.Rd index e23775351d..25508d27ee 100644 --- a/man/query_layout-tiledb_array-method.Rd +++ b/man/query_layout-tiledb_array-method.Rd @@ -17,6 +17,6 @@ A character value describing the query layout } \description{ A \code{tiledb_array} object can have a corresponding query with a given -layout given layout. This methods returns the selection value for +layout. This method returns the selection value for \sQuote{query_layout} as a character value. } From e8128642fa35d3d62b458cec98fa141cc220d91e Mon Sep 17 00:00:00 2001 From: Constantinos Giachalis Date: Wed, 3 Dec 2025 17:18:47 +0200 Subject: [PATCH 08/10] Fix docs ArraySchema.R --- R/ArraySchema.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/ArraySchema.R b/R/ArraySchema.R index 4114fc3956..b25c5a60a1 100644 --- a/R/ArraySchema.R +++ b/R/ArraySchema.R @@ -95,7 +95,7 @@ tiledb_array_schema <- function( } # make it a list so that lapply works below stopifnot( "length of 'attrs' cannot be zero" = length(attrs) > 0, - "'attrs' must be a list of one or tiled_attr objects" = all(vapply(attrs, is_attr, logical(1))) + "'attrs' must be a list of one or tiledb_attr objects" = all(vapply(attrs, is_attr, logical(1))) ) } else { attrs <- NULL From 47055d63e759fd36c81e738ff11887d338247cba Mon Sep 17 00:00:00 2001 From: Constantinos Giachalis Date: Sun, 14 Dec 2025 11:24:58 +0200 Subject: [PATCH 09/10] Fix docs Group.R (v2) --- R/Group.R | 4 ++-- man/tiledb_group.Rd | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/R/Group.R b/R/Group.R index 8d712d84a5..d4d7a6674d 100644 --- a/R/Group.R +++ b/R/Group.R @@ -37,8 +37,8 @@ setClass("tiledb_group", #' \dQuote{READ} or \dQuote{WRITE} #' @param ctx (optional) A TileDB Context object; if not supplied the default #' context object is retrieved -#' @param cfg (optional) A TileConfig object -#' @return A 'group' object +#' @param cfg (optional) A TileDB Config object +#' @return A TileDB Group object #' @export tiledb_group <- function( uri, diff --git a/man/tiledb_group.Rd b/man/tiledb_group.Rd index 8953d08148..cf4fd9da68 100644 --- a/man/tiledb_group.Rd +++ b/man/tiledb_group.Rd @@ -20,10 +20,10 @@ tiledb_group( \item{ctx}{(optional) A TileDB Context object; if not supplied the default context object is retrieved} -\item{cfg}{(optional) A TileConfig object} +\item{cfg}{(optional) A TileDB Config object} } \value{ -A 'group' object +A TileDB Group object } \description{ Creates a 'tiledb_group' object From 72e50137321c70ccd98b45ca1bbe5a8359fa94e6 Mon Sep 17 00:00:00 2001 From: Constantinos Giachalis Date: Sun, 5 Jul 2026 15:12:40 +0300 Subject: [PATCH 10/10] Fix docs FilterList.R --- R/FilterList.R | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/R/FilterList.R b/R/FilterList.R index 0866ed5d7c..bf8f08d2ae 100644 --- a/R/FilterList.R +++ b/R/FilterList.R @@ -58,7 +58,7 @@ tiledb_filter_list <- function(filters = c(), ctx = tiledb_get_context()) { filter_ptrs <- c() if (length(filters) > 0) { if (!all(vapply(filters, is_filter, logical(1)))) { - stop("filters argument must be a list of one or tiledb_filter objects") + stop("filters argument must be a list of one or more tiledb_filter objects") } filter_ptrs <- lapply(filters, function(obj) slot(obj, "ptr")) } @@ -95,7 +95,7 @@ setMethod( #' @rdname tiledb_filter_list_set_max_chunk_size #' @export setGeneric( - "set_max_chunk_size", + "set_max_chunk_size", function(object, value) standardGeneric("set_max_chunk_size")) #' @rdname tiledb_filter_list_set_max_chunk_size @@ -137,7 +137,7 @@ setGeneric("max_chunk_size", function(object) standardGeneric("max_chunk_size")) #' @export setMethod( "max_chunk_size", - signature(object = "tiledb_filter_list"), + signature(object = "tiledb_filter_list"), function(object) { libtiledb_filter_list_get_max_chunk_size(object@ptr) }) @@ -189,7 +189,7 @@ setMethod( ) #' Returns the filter at given index -#' +#' #' @param x `tiledb_config` object #' @param i parameter key string #' @param j parameter key string, currently unused.