wspsxing

Results 31 comments of wspsxing

@cauebs , thanks your idea. But I think should keep two decimal places. How do you feel about the follow? Need or not show percentage for Files? In addition,out style...

@samoconnor ,Thanks you, I used `IOBuffer` finally.

嘿 ! ```rust #![allow(dead_code)] fn main() { struct List { next: Option, } impl List { fn walk_the_list(&mut self) { let mut current = self; loop { let current2 =...

这个是按栈的顺序吗? 即 z,y,x -> x,y,z

总感觉莫名其妙,可以写个结构加闭包验证下

你来看看我这个, 呵 https://play.rust-lang.org/?gist=2d780efb162f4e9b5d396f61207c1e9c&version=stable

catch不知道怎么验证, MIR里是这样的, 大概是y,x,z, 即使用顺序. ```mir fn main() -> () { let mut _0: (); // return pointer scope 1 { let _1: PrintDrop; // "y" in scope 1 at src/main.rs:9:9:...

那你说说闭包使用与否对析构有什么影响? 因为没有闭包内部的作用域使用, 就按catch顺序drop?

我去, 还能像css盒子模型那样重合.. 闭包调用换成; 就和那个没有使用闭包的一样了. 所以你说的这个坑和这个题没有关系吧.