pull/108/head
Rod Elias 3 years ago committed by GitHub
parent 773f02d4af
commit 899e742caf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -11799,7 +11799,7 @@ This prints `\u{ccad} \u{cd98} \u{c608} \u{cc2c}`.
You can get a char from `u8` using the `From` trait, but for a `u32` you use `TryFrom` because it might not work. There are many more numbers in `u32` than characters in Unicode. We can see this with a simple demonstration.
```rust
use std::convert::TryFrom; // You need to brig TryFrom in to use it
use std::convert::TryFrom; // You need to bring TryFrom in to use it
use rand::prelude::*; // We will use random numbers too
fn main() {

Loading…
Cancel
Save