SeqAn3 3.4.0-rc.1
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
is_container_option Interface Reference

Whether the option type is considered to be a container. More...

#include <seqan3/argument_parser/detail/concept.hpp>

Detailed Description

Whether the option type is considered to be a container.

When adding options or positionial arguments, a distinction needs to be made between container and non-container option_types.

In general, all standard library containers except std::string can be considered containers.

In order to be considered a container, the option_type must:

  • not be std::string
  • define a member type value_type
  • provide a member function push_back(value_type)

This entity is not part of the SeqAn API. Do not rely on it in your applications.


The documentation for this interface was generated from the following file:
Hide me