property | value |
---|---|
IDE | Visual Studio |
Language | C++ |
Title | for (reversed) |
Shortcut | frr |
Description | for statement (reversed) |
Snippet Types |
Expansion SurroundsWith |
Placeholders
Identifier | Tooltip | Default Value | Editable | Function | Type Name |
---|---|---|---|---|---|
index | Index | i | yes | ||
max | Max length | length | yes |
Code
for (int i = length - 1; i >= 0; i--) {
}