Registers an external technique pack with the measure package. This function
should be called from the .onLoad() function of technique pack packages.
Examples
if (FALSE) { # \dontrun{
# In a technique pack's R/zzz.R file:
.onLoad <- function(libname, pkgname) {
if (requireNamespace("measure", quietly = TRUE)) {
measure::register_measure_pack(
pack_name = pkgname,
technique = "SEC/GPC",
description = "Size Exclusion Chromatography"
)
}
}
} # }