opter

Crates.ioopter
lib.rsopter
version0.2.0
sourcesrc
created_at2015-05-08 08:44:48.446437
updated_at2015-12-11 23:54:49.267883
descriptionTurn a series of strings into options exposed as an iterator.
homepage
repositoryhttps://github.com/iamtyler/opter
max_upload_size
id2052
size9,626
Tyler Cole (iamtyler)

documentation

README

opter

Turn a series of strings into options exposed as an iterator.

Build Status Coverage Status

Option

When parsed, input strings are determined to be one of two types: a name or a value. From the sequence of names and values, the type of option is determined. It is one of:

  • Flag is a name without a value
  • Ordinal is a value without a name
  • Named is a value with a name
  • Value is simply a raw input string

Names

Names come in two different types: short and long names. Long names start with -- and short names with -. Short name Flags can be stacked, for example -abc represents the flags a, b, and c.

Special Values

- alone is treated as a value. -- signifies the end of options and is not emitted. All strings after -- are passed along as a Value option.

Using opter

opter consumes iterators over strings, or Iterator<Item = String>. To use opter, pass a struct that has an implementation for IntoIterator to opter::parse. Parsing command-line options is a common use case that is met by opter::parse_env.

Commit count: 21

cargo fmt