learning-rust icon indicating copy to clipboard operation
learning-rust copied to clipboard

Results 1 learning-rust issues
Sort by recently updated
recently updated
newest added
trafficstars

https://github.com/lefticus/learning-rust/blob/4651c6a420ee0a1450bcd116c3dc05fe5508d5c2/src/main.rs#L92-L99 In Rust, typically two ways of indexing are used: (1) *infallible* get; and (2) *fallible* get. ### Infallible Get **Infallible get** is done by implementing [`std::ops::Index`][index], which returns the...