Closed egnha closed 5 years ago
These would accompany the component extractors firm_core(), firm_checks(), firm_args(), firm_error(). They should apply only to firm closures.
firm_core()
firm_checks()
firm_args()
firm_error()
Example: Replace the (input validation) checks of one function by those of another
f <- firmly(function(x, y) NULL, ~is.numeric) g <- firmly(function(x, y) NULL, ~is.character) firm_checks(f) <- firm_checks(g)
Package frozen at 1.0.0.
These would accompany the component extractors
firm_core()
,firm_checks()
,firm_args()
,firm_error()
. They should apply only to firm closures.Example: Replace the (input validation) checks of one function by those of another