cgv
cgv::utils::typed_token Struct Reference

#include <advanced_scan.h>

Inheritance diagram for cgv::utils::typed_token:
cgv::utils::token

Public Member Functions

size_t get_length () const
 return the length of the token in number of characters
 
size_t size () const
 return the length of the token in number of characters
 
bool empty () const
 return whether the token is empty
 
void skip (const std::string &skip_chars)
 set begin by skipping all instances of the given character set More...
 
void reverse_skip (const std::string &skip_chars)
 set end by skipping all instances of the given character set
 
char operator[] (unsigned int i) const
 return the i-th character of the token
 
bool operator== (const char *s) const
 compare to const char*
 
bool operator== (const std::string &s) const
 compare to string
 
bool operator!= (const char *s) const
 compare to const char*
 
bool operator!= (const std::string &s) const
 compare to string
 

Public Attributes

const char * begin
 pointers that define the range of characters
 

Detailed Description

a typed token also stores the type and value of a parsed token. Although a union of the different typed values should have been used, the values of different type are stored successively in the typed_token because of problems with standard construction.

Member Function Documentation

◆ skip()

void token::skip ( const std::string &  skip_chars)
inherited

set begin by skipping all instances of the given character set

return the length of the token in number of characters

return the length of the token in number of characters return whether the token is empty set begin by skipping all instances of the given character set


The documentation for this struct was generated from the following file: