-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #33312 - Byron:double-ended-iterator-for-args, r=alexcr…
…ichton DoubleEndedIterator for Args This PR implements the DoubleEndedIterator trait for the `std::env::Args[Os]` structure, as well as the internal implementations. It is primarily motivated by me, as I happened to implement a simple `reversor` program many times now, which so far had to use code like this: ```Rust for arg in std::env::args().skip(1).collect::<Vec<_>>().iter().rev() {} ``` ... even though I would have loved to do this instead: ```Rust for arg in std::env::args().skip(1).rev() {} ``` The latter is more natural, and I did not find a reason for not implementing it. After all, on every system, the number of arguments passed to the program are known at runtime. To my mind, it follows KISS, and does not try to be smart at all. Also, there are no unit-tests, primarily as I did not find any existing tests for the `Args` struct either. The windows implementation is basically a copy-pasted variant of the `next()` method implementation, and I could imagine sharing most of the code instead. Actually I would be happy if the reviewer would ask for it.
- Loading branch information
Showing
4 changed files
with
76 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
use std::env::args; | ||
use std::process::Command; | ||
|
||
fn assert_reverse_iterator_for_program_arguments(program_name: &str) { | ||
let args: Vec<_> = args().rev().collect(); | ||
|
||
assert!(args.len() == 4); | ||
assert_eq!(args[0], "c"); | ||
assert_eq!(args[1], "b"); | ||
assert_eq!(args[2], "a"); | ||
assert_eq!(args[3], program_name); | ||
|
||
println!("passed"); | ||
} | ||
|
||
fn main() { | ||
let mut args = args(); | ||
let me = args.next().unwrap(); | ||
|
||
if let Some(_) = args.next() { | ||
assert_reverse_iterator_for_program_arguments(&me); | ||
return | ||
} | ||
|
||
let output = Command::new(&me) | ||
.arg("a") | ||
.arg("b") | ||
.arg("c") | ||
.output() | ||
.unwrap(); | ||
assert!(output.status.success()); | ||
assert!(output.stderr.is_empty()); | ||
assert_eq!(output.stdout, b"passed\n"); | ||
} |