A rust crate for a vector of tags
```rust
// Create a vector of tags with the tags
// "healthy"(healthy food), "junk"(junk food) and "veg"(vegetarian)
let foods: TagVec
// We don't want healthy or vegetarian food, // we're not plebs who care about the planet, are we!? use expressions::*; let mut coolfoods = tags.query(and(not(tag("veg")), not(tag("healthy")))); for food in coolfoods { println!("{:?}", food); }
// Expected output: (It only outputs the indices of the matching elements, // this is a vec, so the order matters) // 1 // 3 ```