Library: Foundation
Package: Core
Header: Poco/NumericString.h
Utility char pointer wrapper class. Class ensures increment/decrement remain within boundaries.
Member Functions: operator ++, operator +=, operator --, operator -=, operator char *, span
Ptr(
char * ptr,
std::size_t offset
);
char * & operator ++ ();
char * operator ++ (
int
);
char * & operator += (
int incr
);
char * & operator -- ();
char * operator -- (
int
);
char * & operator -= (
int decr
);
operator char * () const;
std::size_t span() const;