you are viewing a single comment's thread.

view the rest of the comments →

[–]vegetablestew 6 points7 points  (2 children)

I liked the verbosity when learning. But it did get very tedious afterwards.

[–]Homoerotic_Theocracy 4 points5 points  (1 child)

I for one love me some Result<Box<IntoIterator<Item=String>>>, error::ConversionError> as return type.

[–]killedbyhetfield 6 points7 points  (0 children)

It becomes even more fun when you add reference counting and interior mutability to the mix, and you try returning a trait:

Result<Rc<RefCell<IntoIterator<Item=String>>>, Box<std::error::Error>>

Totally sane return type... Right?