46 releases (5 breaking)

0.6.8 Sep 17, 2024
0.6.5 Jul 2, 2024
0.4.1 Mar 30, 2024
0.1.19 Dec 17, 2023
0.1.16 Oct 16, 2023

#1815 in Procedural macros

Download history 126/week @ 2024-06-06 22/week @ 2024-06-13 36/week @ 2024-06-20 233/week @ 2024-06-27 74/week @ 2024-07-04 79/week @ 2024-07-11 83/week @ 2024-07-18 137/week @ 2024-07-25 152/week @ 2024-08-01 12/week @ 2024-08-08 96/week @ 2024-08-15 227/week @ 2024-08-22 514/week @ 2024-08-29 495/week @ 2024-09-05 777/week @ 2024-09-12 553/week @ 2024-09-19

2,357 downloads per month
Used in savvy

MIT license

105KB
2.5K SLoC

savvy-macro

Generate R-ready Rust functions by adding #[savvy] macro.

For the full details, please read savvy's crate documentation.

/// Convert to Upper-case
/// 
/// @param x A character vector.
/// @export
#[savvy]
fn to_upper(x: StringSexp) -> savvy::Result<savvy::Sexp> {
    // Use `Owned{type}Sexp` to allocate an R vector for output.
    let mut out = OwnedStringSexp::new(x.len())?;

    for (i, e) in x.iter().enumerate() {
        // To Rust, missing value is an ordinary value. In `&str`'s case, it's just "NA".
        // You have to use `.is_na()` method to distinguish the missing value.
        if e.is_na() {
            // Set the i-th element to NA
            out.set_na(i)?;
            continue;
        }

        let e_upper = e.to_uppercase();
        out.set_elt(i, e_upper.as_str())?;
    }

    out.into()
}

Dependencies

~275–730KB
~17K SLoC