Mass rename of .consume{,_iter}() to .move_iter()

cc #7887
This commit is contained in:
Erick Tryzelaar
2013-08-07 19:21:36 -07:00
parent f0fc9c92ff
commit fad7857c7b
41 changed files with 129 additions and 129 deletions

View File

@@ -247,7 +247,7 @@ pub fn unguarded_pat(a: &arm) -> Option<~[@pat]> {
}
pub fn public_methods(ms: ~[@method]) -> ~[@method] {
do ms.consume_iter().filter |m| {
do ms.move_iter().filter |m| {
match m.vis {
public => true,
_ => false