Coder Social home page Coder Social logo

pargos's Introduction

pargos

indices

string[] args = { "pull", "origin", "master" };
ArgumentCollection collection = ArgumentFactory.Parse(args);

collection.GetString(0); // pull
collection.GetString(1); // origin

collection.GetString(-1); // master
collection.GetString(-2); // origin

collection.GetString(5);  // null
collection.GetString(-5); // null

names

string[] args = { "config", "--global", "--add", "user.email", "[email protected]" };
ArgumentCollection collection = ArgumentFactory.Parse(args);

collection.GetString("add");    // user.email
collection.GetString("add", 1); // [email protected]

collection.GetString("new");    // null
collection.GetString("global"); // null
collection.GetString("add", 2); // null

existence

string[] args = { "config", "--global", "--add", "user.email", "[email protected]" };
ArgumentCollection collection = ArgumentFactory.Parse(args);

collection.Has(0); // true
collection.Has(1); // false

collection.Has("global");    // true
collection.Has("global", 0); // false

collection.Has("add", 1); // true
collection.Has("add", 2); // false

aggregation

string[] args = { "commit", "-am", "Great feature", "--amend", "--no-verify", "--no-post-rewrite" };
ArgumentCollection collection = ArgumentFactory.Parse(args);

collection.Any();   // true
collection.Count(); // 1

collection.Count("a"); // 0
collection.Count("m"); // 1

collection.Count("nothing"); // 0

scope

string[] args = { "commit", "-am", "Great feature", "--amend", "--no-verify", "--no-post-rewrite" };
ArgumentCollection collection = ArgumentFactory.Parse(args);

collection.Scope("no");               // --verify --post-rewrite
collection.Scope("no").Has("verify"); // true

pargos's People

Contributors

amacal avatar spongessuck avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.