fips-md 0.3.0

A framework for simulating arbitrary particle dynamics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Thin wrapper around LLVM to keep the unsafe away

mod bits;
mod module;
mod context;
mod builder;
mod types;
mod value;
mod basicblock;

pub use bits::*;
pub use context::Context;
pub use module::Module;
pub use builder::IRBuilder;
pub use types::{TypeKind, Type, FunctionType};
pub use value::Value;
pub use basicblock::BasicBlock;