Alex Crichton
|
7858065113
|
std: Rename Chan/Port types and constructor
* Chan<T> => Sender<T>
* Port<T> => Receiver<T>
* Chan::new() => channel()
* constructor returns (Sender, Receiver) instead of (Receiver, Sender)
* local variables named `port` renamed to `rx`
* local variables named `chan` renamed to `tx`
Closes #11765
|
2014-03-13 13:23:29 -07:00 |
|
Alex Crichton
|
529e268ab9
|
Fallout of rewriting std::comm
|
2013-12-16 17:47:11 -08:00 |
|
Alex Crichton
|
daf5f5a4d1
|
Drop the '2' suffix from logging macros
Who doesn't like a massive renaming?
|
2013-10-22 08:09:56 -07:00 |
|
Alex Crichton
|
ebf5f406ef
|
cfail: Remove usage of fmt!
|
2013-09-30 23:21:20 -07:00 |
|
Patrick Walton
|
206ab89629
|
librustc: Stop reexporting the standard modules from prelude.
|
2013-05-29 19:04:53 -07:00 |
|
Patrick Walton
|
1e91595520
|
librustc: Remove fail_unless!
|
2013-03-29 16:39:08 -07:00 |
|
Patrick Walton
|
d7e74b5e91
|
librustc: Convert all uses of assert over to fail_unless!
|
2013-03-07 22:37:57 -08:00 |
|
Brian Anderson
|
dab6a85230
|
core: Extract comm from pipes. #4742
|
2013-02-21 17:36:54 -08:00 |
|
Luqman Aden
|
178882c98f
|
tests/tutorials: Get rid of move .
|
2013-02-15 02:49:55 -08:00 |
|
Nick Desaulniers
|
4445b38df2
|
Remove die!, raplace invocations with fail! Issue #4524 pt 3
|
2013-02-13 17:01:32 -08:00 |
|
Nick Desaulniers
|
aee7929469
|
Replace most invocations of fail keyword with die! macro
|
2013-01-31 20:12:49 -08:00 |
|
Tim Chevalier
|
38bd694df1
|
Reverse the order of the results of pipes::stream
As per #3637.
|
2012-12-11 19:23:28 -08:00 |
|
Graydon Hoare
|
d1affff623
|
Reliciense makefiles and testsuite. Yup.
|
2012-12-10 17:32:58 -08:00 |
|
Brian Anderson
|
8337fa1a54
|
Camel case the option type
|
2012-08-26 15:56:16 -07:00 |
|
Ben Blum
|
e5fb58e6c0
|
Add compile-fail tests for unsound moving out of enums (#2329)
|
2012-08-22 20:40:25 -04:00 |
|