property | value |
---|---|
IDE | Visual Studio |
Language | C++ |
Title | for (range-based) |
Shortcut | frrb |
Description | range-based for statement |
Snippet Types |
Expansion SurroundsWith |
Placeholders
Identifier | Tooltip | Default Value | Editable | Function | Type Name |
---|---|---|---|---|---|
range | Range | x | yes | ||
variable | Variable | i | yes |
Code
for (auto& i : x) {
}