Git Product home page Git Product logo

cxx20opts's Introduction

cxx20opts

C++20 (17) command line parsing library

Tasks:

  • Basic argument processing - wrapping with std::string_view (since C++17) (don't usage C++ std::string - redundant memory allocation).
  • Help generator, with custom options, user-defind, default - basic help output.
  • Option With small -f path and full name --file path. Space or ( and? ) equals sign (user defind, default - space) - separator option and argument.
  • Exception free overloading.
  • Optional windwos style command line argumets generate.

Basic API (is disscussed):

  • class options - observer argc, argv.
cxx20opts::options opts{argc, argv};
  • obj[ "keyname"sv ], obj[ arg_number - decltype (sizeof 0) ], .at<T>(sv/arg_number) - as default, returned std::string_view or concept (since C++20) string (is abstract string, user impl-defined). with support cast to user-defined type.
opts["file"sv] // returned std::filesystem::path (if before defined)
  • raw() - get parir with raw argc && argv.
obj.raw() -> std::pair<int, char**> /* or concept pair, default usage - std::pair */ 
  • add_option()
options.add_option(option{}).add_option({});

// or
options.option(option{}, option{}, option{});

// or
options.option(option{}
| option{}
| option{}
| option{}
);
  • options.add_options(); // Is this really necessary?

  • etc...

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.