Any book out there that can ease me into Rust from C?

  • philm@programming.dev
    link
    fedilink
    arrow-up
    2
    ·
    11 months ago

    Yes agree, I need unsafe super rarely, and often it’s just for small optimizations (like std::mem::transmute::(kind) where SyntaxKind is an enum with #[repr(u16)]).

    But I guess it depends on what you’re doing exactly though (the higher-level, the less unsafe you need).