#is-even #killer-app

rust_is_even

isevenapi 的非官方包装crate

1 个不稳定版本

0.1.0 2021年4月11日

自定义许可证

9KB

rust_is_even

使用 isevenapi 检查整数是否为偶数。

用法

// Cargo.toml: 'tokio = { version = "1.4.0", features = ["full"] }'

extern crate rust_is_even as ie;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {    
    let n: u32 = 42;
    if ie::is_even(n).await? {
        println!("{} is even", n);
    } else {
        println!("{} is odd", n);
    }    

    Ok(())
}

依赖

~4–15MB
~231K SLoC