rust/src/comp/util
Marijn Haverbeke 4e03112141 Add a pass-by-copy parameter passing convention
This is intended to solve the problem of how to pass arguments to
constructor functions -- you want to move in rvalues, but not have to
explicitly copy stuff that is not an rvalue. The by-copy passing
convention will ensure the callee gets its own copy of the value. For
rvalues, it'll just pass off the value. For lvalues, it'll make a
copy.

Issue #1177
2011-11-18 12:49:00 +01:00
..
common.rs remove compile-command from local variable blocks 2011-11-17 11:46:13 -08:00
filesearch.rs Cleanup unused imports 2011-11-10 19:19:40 -08:00
ppaux.rs Add a pass-by-copy parameter passing convention 2011-11-18 12:49:00 +01:00