R/utils-conditions.R

Defines functions throw_not_implemented

throw_not_implemented <- function(
    message = "Not Implemented", call = NULL, ...
) {
    stop(structure(
        list(message = message, call = call, ...),
        class = c("NotImplementedError", "error", "condition")
    ))
}

Try the einops package in your browser

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

einops documentation built on Sept. 9, 2025, 5:29 p.m.