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

Module Impl

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

Import path

import codeql.rust.elements.internal.SlicePatImpl

Classes

SlicePat

A slice pattern. For example: rust match x { [1, 2, 3, 4, 5] => "ok", [1, 2, ..] => "fail", [x, y, .., z, 7] => "fail", }