1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// ladata::misc
//
//! Miscellaneous types.
//
// use super::error::LadataResult as Result;
pub use *;
pub use *;
/// An abstract Collection.
// /// An abstract dynamically-sized Collection.
// pub trait DynDataCollection: DataCollection {
// fn collection_with_capacity(capacity: usize) -> Self;
// fn collection_capacity(&self) -> usize;
// fn collection_set_capacity(&mut self, capacity: usize) -> Result<()>;
// //
// fn collection_remaining_capacity(&self) -> usize {
// self.collection_capacity() - self.collection_len()
// }
// }