mirror of
https://github.com/boostorg/test.git
synced 2026-02-19 02:42:13 +00:00
9 lines
138 B
C++
9 lines
138 B
C++
//[snippet16
|
|
class const_string {
|
|
public:
|
|
//...
|
|
char operator[]( size_t index ) const;
|
|
char at( size_t index ) const;
|
|
//...
|
|
};
|
|
//]
|