R/variableLibrary.R

Defines functions notebookutils.variableLibrary.getHelpString notebookutils.variableLibrary.getLibrary notebookutils.variableLibrary.get

Documented in notebookutils.variableLibrary.get notebookutils.variableLibrary.getHelpString notebookutils.variableLibrary.getLibrary

#' variableLibrary.R: Utility for Fabric Variable Library
#'
#' @noRd
.dummyStr <- ""

#' Get a variable value
#'
#' Dummy implementation for local development.
#'
#' @param variableReference Variable reference
#' @return A variable value (NULL)
#' @export
notebookutils.variableLibrary.get <- function(variableReference) {
  NULL
}

#' Get a variable library
#'
#' Dummy implementation for local development.
#'
#' @param variableLibraryName Variable library name
#' @return A dummy variable library object (list)
#' @export
notebookutils.variableLibrary.getLibrary <- function(variableLibraryName) {
  NULL
}

#' Get help string for a method.
#'
#' @param funcName function name
#' @param namespace namespace
#' @export
notebookutils.variableLibrary.getHelpString <- function(funcName = "", namespace = "") {
  .dummyStr
}

Try the notebookutils package in your browser

Any scripts or data that you put into this service are public.

notebookutils documentation built on Jan. 26, 2026, 9:06 a.m.