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

Module SlicePat

This module provides the public class SlicePat.

Import path

import codeql.rust.elements.SlicePat

Imports

Pat

This module provides the public class Pat.

Aliases

SlicePat

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