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

Module RangePat

This module provides the public class RangePat.

Import path

import codeql.rust.elements.RangePat

Imports

Pat

This module provides the public class Pat.

Aliases

RangePat

A range pattern. For example: rust match x { ..15 => "too cold", 16..=25 => "just right", 26.. => "too hot", }