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 convert a Rust slice of u8 to u32?
- How to convert a Rust slice to a struct?
- How to split a Rust slice?
- How to iterate over a Rust slice with an index?
- How to push an element to a Rust slice?
- How to fill a Rust slice with a specific value?
- How to reverse a Rust slice?
- How to shift elements in a Rust slice?
- How to slice a hashmap in Rust?
More of Rust
- How to use binary regex in Rust?
- How to match a URL with a regex in Rust?
- How to ignore case in Rust regex?
- How to use regex to match a double quote in Rust?
- How to use Unicode in a regex in Rust?
- How to replace a capture group using Rust regex?
- How to split a string with Rust regex?
- How to parse a file with Rust regex?
- Regex example to match multiline string in Rust?
- How to use negation in Rust regex?
See more codes...