rustHow to check if a Rust slice contains a certain value?
To check if a Rust slice contains a certain value, you can use the contains() method. This method takes a reference to the value you want to check for and returns a boolean value indicating whether the slice contains the value or not.
Example code
let numbers = [1, 2, 3, 4, 5];
let contains_three = numbers.contains(&3);
Output example
true
Code explanation
let numbers = [1, 2, 3, 4, 5];: This line creates a slice of numbers.let contains_three = numbers.contains(&3);: This line calls thecontains()method on thenumbersslice, passing in a reference to the value3as an argument.true: This is the output of the code, indicating that thenumbersslice contains the value3.
Helpful links
Related
- How to convert a Rust slice of u8 to a string?
- How to calculate the sum of a Rust slice?
- How to convert a Rust slice of u8 to u32?
- How to check for equality between Rust slices?
- How to create a Rust slice with a specific size?
- How to iterate over a Rust slice with an index?
- How to swap elements in a Rust slice?
- Does Rust perform bounds checking on slices?
- How to split a Rust slice?
- How to create a subslice from a Rust slice?
More of Rust
- How to match a URL with a regex in Rust?
- How to replace a capture group using Rust regex?
- How to replace strings using Rust regex?
- How to use regex lookbehind in Rust?
- How to convert Rust bytes to a struct?
- How to use regex lookahead in Rust?
- How to ignore case in Rust regex?
- How to use regex to match a group in Rust?
- How to use negation in Rust regex?
- How to use regex to match a double quote in Rust?
See more codes...