@@ -107,6 +107,7 @@ class Buffer_base : public object_base {
107
107
virtual result_t writeDoubleBE (double value, int32_t offset, bool noAssert) = 0;
108
108
virtual result_t slice (int32_t start, obj_ptr<Buffer_base>& retVal) = 0;
109
109
virtual result_t slice (int32_t start, int32_t end, obj_ptr<Buffer_base>& retVal) = 0;
110
+ virtual result_t reverse (obj_ptr<Buffer_base>& retVal) = 0;
110
111
virtual result_t hex (exlib::string& retVal) = 0;
111
112
virtual result_t base64 (exlib::string& retVal) = 0;
112
113
virtual result_t keys (v8::Local<v8::Object>& retVal) = 0;
@@ -179,6 +180,7 @@ class Buffer_base : public object_base {
179
180
static void s_writeDoubleLE (const v8::FunctionCallbackInfo<v8::Value>& args);
180
181
static void s_writeDoubleBE (const v8::FunctionCallbackInfo<v8::Value>& args);
181
182
static void s_slice (const v8::FunctionCallbackInfo<v8::Value>& args);
183
+ static void s_reverse (const v8::FunctionCallbackInfo<v8::Value>& args);
182
184
static void s_hex (const v8::FunctionCallbackInfo<v8::Value>& args);
183
185
static void s_base64 (const v8::FunctionCallbackInfo<v8::Value>& args);
184
186
static void s_keys (const v8::FunctionCallbackInfo<v8::Value>& args);
@@ -249,6 +251,7 @@ inline ClassInfo& Buffer_base::class_info()
249
251
{ " writeDoubleLE" , s_writeDoubleLE, false },
250
252
{ " writeDoubleBE" , s_writeDoubleBE, false },
251
253
{ " slice" , s_slice, false },
254
+ { " reverse" , s_reverse, false },
252
255
{ " hex" , s_hex, false },
253
256
{ " base64" , s_base64, false },
254
257
{ " keys" , s_keys, false },
@@ -1404,6 +1407,20 @@ inline void Buffer_base::s_slice(const v8::FunctionCallbackInfo<v8::Value>& args
1404
1407
METHOD_RETURN ();
1405
1408
}
1406
1409
1410
+ inline void Buffer_base::s_reverse (const v8::FunctionCallbackInfo<v8::Value>& args)
1411
+ {
1412
+ obj_ptr<Buffer_base> vr;
1413
+
1414
+ METHOD_INSTANCE (Buffer_base);
1415
+ METHOD_ENTER ();
1416
+
1417
+ METHOD_OVER (0 , 0 );
1418
+
1419
+ hr = pInst->reverse (vr);
1420
+
1421
+ METHOD_RETURN ();
1422
+ }
1423
+
1407
1424
inline void Buffer_base::s_hex (const v8::FunctionCallbackInfo<v8::Value>& args)
1408
1425
{
1409
1426
exlib::string vr;
0 commit comments