alef 0.25.17

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
#' Configure service: {{ method_name }}
#'
#' @description
#' {{ description }}
#'
#' @param x An S3 object of class '{{ class_name }}'
{% for param_doc in param_docs -%}
{{ param_doc }}
{% endfor -%}
#' @return Updated S3 object (invisibly)
#' @export
{{ method_name }}.{{ class_name }} <- function(x{{ params_suffix }}) {
{% for state_assignment in state_assignments -%}
{{ state_assignment }}
{% endfor -%}
  invisible(x)
}