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 a string?
- How to convert a Rust slice of u8 to u32?
- How to convert a Rust slice to a tuple?
- How to convert a Rust slice to a struct?
- How to iterate over a Rust slice with an index?
- How to split a Rust slice?
- How to remove elements from a Rust slice?
- How to make a Rust slice unique?
- How to convert a Rust slice to a fixed array?
- How to convert a vector to a Rust slice?
More of Rust
- How do I print the type of a variable in Rust?
- How to remove an element from a Rust HashMap if a condition is met?
- How to match whitespace with a regex in Rust?
- How to replace a capture group using Rust regex?
- How to match a URL with a regex in Rust?
- How to replace strings using Rust regex?
- How to parse a file with Rust regex?
- How to get a capture group using Rust regex?
- How to extract data with regex in Rust?
- How to escape dots with regex in Rust?
See more codes...