(no title)
scialex | 11 years ago
Also turning on optimizations in rust and the linker helped a lot but were not enough in the end.
scialex | 11 years ago
Also turning on optimizations in rust and the linker helped a lot but were not enough in the end.
mafribe|11 years ago
I wonder if you have any opinions on how useful higher-kinded types (HKTs), one of the most requested features for Rust, would have been in implementing this OS. For example the absence of HKTs means that Rust can't have smooth and general handling of monads that is comparable to Haskell's. Would Haskell-style monads or Arrows have been helpful?
scialex|11 years ago
I believe HKT would have been useful but am not really sure how much HKT would have helped me overall. They would likely have been most useful (if at all) in the VFS/S5FS/VM stages that I was unable to fully get to.
Honestly, I have not used haskell enough to definitively say whether monads/arrows would have been useful.
pjc50|11 years ago
keeperofdakeys|11 years ago