mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 19:53:46 +00:00
parent
ffe8c73cf6
commit
f8eedcba5f
@ -354,6 +354,57 @@ fn example() {
|
||||
#### `false`:
|
||||
|
||||
```rust
|
||||
fn example() {
|
||||
// If
|
||||
foo!(
|
||||
if x {
|
||||
foo();
|
||||
} else {
|
||||
bar();
|
||||
}
|
||||
);
|
||||
|
||||
// IfLet
|
||||
foo!(
|
||||
if let Some(..) = x {
|
||||
foo();
|
||||
} else {
|
||||
bar();
|
||||
}
|
||||
);
|
||||
|
||||
// While
|
||||
foo!(
|
||||
while x {
|
||||
foo();
|
||||
bar();
|
||||
}
|
||||
);
|
||||
|
||||
// WhileLet
|
||||
foo!(
|
||||
while let Some(..) = x {
|
||||
foo();
|
||||
bar();
|
||||
}
|
||||
);
|
||||
|
||||
// ForLoop
|
||||
foo!(
|
||||
for x in y {
|
||||
foo();
|
||||
bar();
|
||||
}
|
||||
);
|
||||
|
||||
// Loop
|
||||
foo!(
|
||||
loop {
|
||||
foo();
|
||||
bar();
|
||||
}
|
||||
);
|
||||
}
|
||||
```
|
||||
|
||||
## `comment_width`
|
||||
|
Loading…
Reference in New Issue
Block a user