rust_abf 0.4.4

Rust crate for reading data from Axon Binary Format (ABF) files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub struct  IndexedStrings {
    strings: Vec<String>,
}

impl IndexedStrings {
    pub fn new(strings: Vec<String>) -> Self {
        IndexedStrings { strings }
    }
    pub fn get(&self, index: i32) -> Option<&String> {
        self.strings.get(index as usize)
    }
}