Convenience macros for the ConsList
type from the cons-list crate.
- Documentation
Add the following dependencies to your Cargo.toml
:
toml
[dependencies]
cons = "0.0.3"
cons-list = "0.0.3"
Then add the following to your crate root:
```rust
extern crate cons_list; ```
The cons!
macro can be used as follows:
```rust use cons_list::ConsList;
// Create an empty ConsList
let list: ConsList
// Create a ConsList with one element let list = cons!(1);
// Prepend an element to a ConList let head = "Hello"; let tail = cons!("World"); let list = cons!(head, tail); ```
The conslist!
macro can be used as follows:
```rust
use cons_list::ConsList;
// Create an empty ConsList
let list: ConsList
// Create a ConsList let list = conslist!("A", "B", "C"); ```