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

Module Impl

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

Import path

import codeql.rust.elements.internal.TupleExprImpl

Classes

TupleExpr

A tuple expression. For example: rust let tuple = (1, "one"); let n = (2, "two").0; let (a, b) = tuple;