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 thenumbers
slice, passing in a reference to the value3
as an argument.true
: This is the output of the code, indicating that thenumbers
slice contains the value3
.
Helpful links
Related
- How to convert a Rust slice of u8 to u32?
- How to convert a Rust slice to a fixed array?
- How to convert a Rust slice of u8 to a string?
- How to convert a slice of bytes to a string in Rust?
- How to convert a slice to a hex string in Rust?
- How to convert a u8 slice to a hex string in Rust?
- How to create a slice from a string in Rust?
- How to calculate the sum of a Rust slice?
- How to get the last element of a Rust slice?
- How to get the first element of a slice in Rust?
More of Rust
- Hashshet example in Rust
- How to use a tuple as a key in a Rust HashMap?
- How to get a capture group using Rust regex?
- How to split a string with Rust regex?
- How to replace strings using Rust regex?
- How to parse a file with Rust regex?
- How to use regex to match a group in Rust?
- How to parse JSON string in Rust?
- How to get an entry from a HashSet in Rust?
- How to convert a Rust HashMap to a JSON string?
See more codes...