Re: [rust-dev] Rationale for closing this mailing list

2015-05-31 Thread Andrew Gallant
So... why? https://mail.mozilla.org/pipermail/rust-dev/2015-January/011558.html ___ Rust-dev mailing list Rust-dev@mozilla.org https://mail.mozilla.org/listinfo/rust-dev

Re: [rust-dev] StrBuf and regular expressions

2014-05-26 Thread Andrew Gallant
Try using `self.sgf.as_slice()` instead. The change is necessary, AFAIK, because `~str` would automatically be converted to a borrowed reference without having to explicitly call the `as_slice` method. This doesn't happen for the StrBuf (and what is now String, I think) type. My suspicion is

Re: [rust-dev] StrBuf and regular expressions

2014-05-26 Thread Andrew Gallant
argument to arbitrary function, however. 2014-05-26 10:36 GMT+04:00 Andrew Gallant jams...@gmail.com: Try using `self.sgf.as_slice()` instead. The change is necessary, AFAIK, because `~str` would automatically be converted to a borrowed reference without having to explicitly call the `as_slice