R/utilities.R

Defines functions insert id

#' Returns the id of a BeeDyn object
#'
#' @param object
#'
#' @return a character value containing to object id
#' @export
#'
#' @examples
id <- function(object) {
  object$identifiant
}


#' Insert elements to a DeeDyn object
#'
#' @param object the DeeDyn object to modify
#' @param ... every objects to be added to the object parameter
#'
#' @export
#'
insert <- function(object,...) {
  UseMethod("insert",object)
}
BEE-Univ-Grenoble/BeeDyn documentation built on Dec. 17, 2021, 9:50 a.m.