dynsequence

Crates.io docs.rs license: MIT/Apache-2.0 Rust CI

DynSequence<dyn Trait> is like Vec<Box<dyn Trait>>, but with an optimization that avoids allocations. This works by using multiple larger blocks of memory and storing their pointers in a Vec. This means, the items are randomly accessible, but may not lay in continues memory.

Example

This example stores multiple values the DynSequence and accesses them. (push(...) requires the "unstable" feature (nightly only))

```rust

#[cfg(feature="unstable")] {

use dynsequence::DynSequence; use std::any::Any; let mut seq: DynSequence = DynSequence::new(); seq.push("foo"); seq.push(1234); asserteq!(Some(&1234), seq.get(1).andthen(|a| a.downcastref())); asserteq!(Some(&"foo"), seq.get(0).andthen(|a| a.downcastref())); assert!(seq.get(2).isnone()); asserteq!(None, seq.get(0).andthen(|a| a.downcastref::()));

}

```

The following example shows the usage of a macro-hac that also works on stable

```rust use dynsequence::{DynSequence,dynsequence}; use std::any::Any; // construct with macro hack let mut seq: DynSequence = dynsequence![dyn Any => "foo", 1234]; asserteq!(Some(&1234), seq.get(1).andthen(|a| a.downcastref())); asserteq!(Some(&"foo"), seq.get(0).andthen(|a| a.downcastref())); assert!(seq.get(2).is_none());

// push with macro hack dynsequence![dyn Any | &mut seq => { push (true); } ]; asserteq!(Some(&true), seq.get(2).andthen(|a| a.downcastref()));

```

no_std

This crate should also work without std (with alloc). No additional configuration required.

License

This repository is licensed under either of

at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.