File: README.md

package info (click to toggle)
rust-gat-std 0.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 132 kB
  • sloc: makefile: 4
file content (11 lines) | stat: -rw-r--r-- 442 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11

# GAT std

A variant of Rust `std` traits that use GATs, as well as a macro to allow rewriting code
to use these traits instead of the `std` equivalents.

## Why?

1) These traits provide a common base so crates can all use the same definitions, like with `num-traits`
2) `std` likely won't be able to change to use these traits for quite a while, if ever. This allows
   users to take advantage of GATs in their code smoothly despite that.