Slug: unsafe-redesign-02 · Paired reading: Chapter 4
Prompt
struct AsciiMap([u8; 128]) with safe fn get(&self, b: u8) -> u8.
After proving b < 128, use exactly one unsafe { get_unchecked } —
encapsulation: callers never write unsafe.
The curriculum, drills, tutor, and interviewer mode are for readers of Ace the Rust Interview. The code is printed in the Preface (Companion site access).
Don’t have the book yet? The landing page stays open — purchase unlocks this gym.
intermediate · order 52
Slug: unsafe-redesign-02 · Paired reading: Chapter 4
struct AsciiMap([u8; 128]) with safe fn get(&self, b: u8) -> u8.
After proving b < 128, use exactly one unsafe { get_unchecked } —
encapsulation: callers never write unsafe.