Boost.URL

    • Quick Look
    • URLs
      • Parsing
      • Containers
      • Segments
      • Params
      • Normalization
      • String Token
      • Percent Encoding
      • Formatting
    • Customization
      • Parse Rules
      • Character Sets
      • Compound Rules
      • Ranges
      • RFC 3986
    • Examples
      • QR Code
      • Finicky
      • mailto URLs
      • Magnet Link
      • File Router
      • Router
      • Sanitizing URLs
    • Reference
    • Help Card
  • boost::urls::string_token::is_token

boost::urls::string_token::is_token

Trait to determine if a type is a string token

Synopsis

Declared in <boost/url/grammar/string_token.hpp>

template<class T>
using is_token = /* implementation-defined */;

Description

This trait returns true if T is a valid StringToken type, and false otherwise.

Example

static_assert( string_token::is_token<T>::value );

Created with MrDocs