43 个版本 (5 个重大更新)

0.6.5 2024年7月2日
0.6.1 2024年4月26日
0.4.1 2024年3月30日
0.1.19 2023年12月17日
0.1.16 2023年10月16日

#1211 in Rust 模式

Download history • Rust 包仓库 46/week @ 2024-04-27 • Rust 包仓库 463/week @ 2024-05-04 • Rust 包仓库 64/week @ 2024-05-11 • Rust 包仓库 187/week @ 2024-05-18 • Rust 包仓库 465/week @ 2024-05-25 • Rust 包仓库 73/week @ 2024-06-01 • Rust 包仓库 126/week @ 2024-06-08 • Rust 包仓库 37/week @ 2024-06-15 • Rust 包仓库 27/week @ 2024-06-22 • Rust 包仓库 275/week @ 2024-06-29 • Rust 包仓库 41/week @ 2024-07-06 • Rust 包仓库 112/week @ 2024-07-13 • Rust 包仓库 97/week @ 2024-07-20 • Rust 包仓库 90/week @ 2024-07-27 • Rust 包仓库 144/week @ 2024-08-03 • Rust 包仓库 5/week @ 2024-08-10 • Rust 包仓库

346 每月下载量
3 个包中使用了 (2 个直接使用)

MIT 许可证

89KB
2K SLoC

savvy-bindgen

解析 Rust 函数,并生成 C 和 R 代码。

有关详细信息,请参阅 savvy 的包文档.

/// 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()
}

依赖项

~265–770KB
~18K SLoC