Passing is_ascii_alphanumeric as a function

Is there a way to pass u8 - Rust as a function besides

|x| x.is_ascii_alphanumeric()

?

u8::is_ascii_alphanumeric

like this?

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.