alef 0.23.35

Opinionated polyglot binding generator for Rust libraries
Documentation
1
2
3
4
5
6
// Optional bool: -1 = None, 0 = false, 1 = true
let {{ rs_name }} = if {{ name }} < 0 {
        None
    } else {
        Some({{ name }} != 0)
    };