higher-kinded-types 0.3.0

"Generic generics" / higher-kinded APIs in stable Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
# The following snippets fail to compile

## `For!` requires `new_For_type!` around it

```rust ,compile_fail
use ::higher_kinded_types::prelude::*;

type Vec_ = For!(<T> = Vec<T>);
```

<!-- Templated by `cargo-generate` using https://github.com/danielhenrymantilla/proc-macro-template -->