rtsam 0.1.4

Real Time Smoothing and Mapping (RTSAM) in Rust.
Documentation
1
2
3
4
5
6
7
8
9

use nalgebra::Scalar;

pub struct Symbol<T: Scalar> {
    name: String,
    value: Option<T>,
}

pub type Size = Symbol<u64>;