#include <v8.h>
Public Member Functions | |
| virtual | ~ExternalAsciiStringResource () |
| virtual const char * | data () const =0 |
| virtual size_t | length () const =0 |
An ExternalAsciiStringResource is a wrapper around an ascii string buffer that resides outside V8's heap. Implement an ExternalAsciiStringResource to manage the life cycle of the underlying buffer. Note that the string data must be immutable and that the data must be strict 7-bit ASCII, not Latin1 or UTF-8, which would require special treatment internally in the engine and, in the case of UTF-8, do not allow efficient indexing. Use String::New or convert to 16 bit data for non-ASCII.
| virtual v8::String::ExternalAsciiStringResource::~ExternalAsciiStringResource | ( | ) | [inline, virtual] |
Override the destructor to manage the life cycle of the underlying buffer.
| virtual const char* v8::String::ExternalAsciiStringResource::data | ( | ) | const [pure virtual] |
The string data from the underlying buffer.
| virtual size_t v8::String::ExternalAsciiStringResource::length | ( | ) | const [pure virtual] |
The number of ascii characters in the string.
1.7.1