v8
10.1.124 (node 18.2.0)
V8 is Google's open source JavaScript engine
|
#include <v8-memory-span.h>
Public Member Functions | |
constexpr | MemorySpan ()=default |
constexpr | MemorySpan (T *data, size_t size) |
constexpr T * | data () const |
constexpr size_t | size () const |
Points to an unowned continous buffer holding a known number of elements.
This is similar to std::span (under consideration for C++20), but does not require advanced C++ support. In the (far) future, this may be replaced with or aliased to std::span.
To facilitate future migration, this class exposes a subset of the interface implemented by std::span.
Definition at line 25 of file v8-memory-span.h.
|
constexprdefault |
The default constructor creates an empty span.
Referenced by FunctionTemplate::NewWithCFunctionOverloads(), and FunctionTemplate::SetCallHandler().
|
inlineconstexpr |
Definition at line 30 of file v8-memory-span.h.
|
inlineconstexpr |
Returns a pointer to the beginning of the buffer.
Definition at line 33 of file v8-memory-span.h.
|
inlineconstexpr |
Returns the number of elements that the buffer holds.
Definition at line 35 of file v8-memory-span.h.