alef 0.24.2

Opinionated polyglot binding generator for Rust libraries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#' {{ title }}
#'
#' @description
#' {{ description }}
#'
#' @param x An S3 object of class '{{ class_name }}'
{% for param_doc in param_docs -%}
{{ param_doc }}
{% endfor -%}
#' @return {{ return_doc }}
#' @export
{{ ep_name }}.{{ class_name }} <- function(x{{ params_suffix }}) {
  .Call(`{{ native_fn }}`, x$.registrations{{ native_args_suffix }})
{% if invisible_null -%}
  invisible(NULL)
{% endif -%}
}