CodeQL library for Rust
codeql/rust-all 0.2.7 (changelog, source)
Search

Module Impl

INTERNAL: This module contains the customizable definition of LoopExpr and should not be referenced directly.

Import path

import codeql.rust.elements.internal.LoopExprImpl

Classes

LoopExpr

A loop expression. For example: rust loop { println!("Hello, world (again)!"); }; rust 'label: loop { println!("Hello, world (once)!"); break 'label; }; rust let mut x = 0; loop { if x < 10 { x += 1; } else { break; } };