Completed
Abstracting over Borrowing
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Writing a Crate for Kahan Summation in Rust - Meetup Talk
Automatically move to the next video in the Classroom when playback concludes
- 1 Intro
- 2 Floating point numbers are like scientific notation
- 3 The precision depends on the type of float
- 4 Kahan summation example
- 5 Starting Simple
- 6 Feature Checklist
- 7 Missing Features
- 8 Customizing operators
- 9 Low-hanging fruit
- 10 Implementing Methods for a Trait
- 11 Replacing std::iter::Sum
- 12 Generic over floats
- 13 Abstracting over Borrowing
- 14 Finishing Touches