R/Details.R

Defines functions Details

Documented in Details

#' Look at flydoc details section
#' 
#' Look at the the details section for your flydoc documnetation
#' for a given function
#' 
#' @param fun A function
#' @export
Details <- function(fun){
    flyget("Details", fun)
}

#' Set a detail section
#' 
#' Set a title for your flydoc documentation for a
#' given function
#' 
#' @param func A function to add a flydoc details section to.
#' @param value A character string containing the 
#'  details section to add to the function's documentation
#' @export
"Details<-" <- function(func, value){
    invisible(flyassign("Details", func, value))
}
Dasonk/flydoc documentation built on May 6, 2019, 1:37 p.m.