Enter your book access code

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

Encapsulate one unsafe block

unsafe-redesign-02Related book chapters: 4 (optional — this page is complete on its own)unsafeencapsulate

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.