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

Module Impl

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

Import path

import codeql.rust.elements.internal.RangeExprImpl

Classes

RangeExpr

A range expression. For example: rust let x = 1..=10; let x = 1..10; let x = 10..; let x = ..10; let x = ..=10; let x = ..;