Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. trait Float {
  2. fn ceil(self) -> Self;
  3. }
  4.  
  5. impl Float for f64 {
  6. fn ceil(self) -> f64 { f64::ceil(self) }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement