static_assert_macro 1.0.0

Library implementation of so-called `static_assert`
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# `static_assert` macro

Cargo.toml:

    [dependencies]
    static_assert_macro = "1.0.0"

Your code:

    #[macro_use]
    extern crate static_assert_macro;
    
    static_assert!(1 < 2);

See https://nodakai.github.io/rust-static_assert_macro for more details.

This crate is a free software distributed under the Apache 2.0 license.