Jorge Aparicio
|
ec11f66dbf
|
replace f.call_mut(a, b, ..) with f(a, b, ..)
|
2015-01-05 17:22:18 -05:00 |
|
Niko Matsakis
|
698db04a8d
|
Purge the hack that allows FnOnce to be used with a by-value self method. Besides being yucky, it will cause problems if we try to make all traits implement themselves, which would make a lot of things in life easier. Also, it was inextricably linked to Box , which was not the intention. We can work around its absence, so better to reimplement it later in a more thorough fashion.
|
2014-12-14 04:21:56 -05:00 |
|
Niko Matsakis
|
058abcc209
|
Place parenthetical notation under the unboxed_closure feature-gate.
Consolidate the `unboxed_closure_sugar` and `unboxed_closure` feature gates.
|
2014-11-18 12:26:04 -05:00 |
|
Niko Matsakis
|
221edbae38
|
Support parenthesized paths Foo(A,B) -> C that expand to Foo<(A,B),C> . These paths also bind anonymous regions (or will, once HRTB is fully working).
Fixes #18423.
|
2014-11-06 06:48:23 -05:00 |
|
Patrick Walton
|
e0a165ca13
|
libstd: Add Fn /FnMut /FnOnce to the prelude.
Closes #16600.
|
2014-08-19 13:57:10 -07:00 |
|