fips-md 0.3.0

A framework for simulating arbitrary particle dynamics
Documentation
1
2
3
4
5
6
7
8
9
10
//! External function declarations

use super::FipsType;

#[derive(Debug,PartialEq)]
pub struct ExternFunctionDecl {
    pub name: String,
    pub parameter_types: Vec<FipsType>,
    pub return_type: FipsType
}