sciforge-lib 0.0.4

Scientific computing library — mathematics, physics, chemistry, biology, astronomy, geology, meteorology.
Documentation
1
2
3
4
5
6
7
8
9
use super::Fuel;

pub mod cng;
pub mod lng;
pub mod lpg;

pub fn all() -> Vec<Fuel> {
    vec![lpg::fuel(), cng::fuel(), lng::fuel()]
}