[#1807] Add entry in docs/user/features

This commit is contained in:
Lúcás Meier 2019-10-04 11:03:35 +02:00
parent e17243d698
commit fe8ec1c045

View file

@ -166,6 +166,20 @@ impl Foo for S {
}
```
- Apply [De Morgan's law](https://en.wikipedia.org/wiki/De_Morgan%27s_laws)
```rust
// before:
fn example(x: bool) -> bool {
!x || !x
}
// after:
fn example(x: bool) -> bool {
!(x && !x)
}
```
- Import path
```rust