An open API service indexing awesome lists of open source software.

https://github.com/restioson/blair_mountain

A macro to define union types with union semantics in release mode but debug assertions in debug mode
https://github.com/restioson/blair_mountain

Last synced: about 1 year ago
JSON representation

A macro to define union types with union semantics in release mode but debug assertions in debug mode

Awesome Lists containing this project

README

          

# blair_mountain

A crate that exports one macro (`union`) to create types that are enums with checks in debug mode, but unions in release mode. In debug mode, invalid access will panic, while in release
they will not. It is therefore unsafe. Fields should be treated as fields of unions (i.e
no non-`Copy` types allowed, etc). **Please test all code generated with `blair_mountain` in
both release and debug modes.**