本文整理汇总了C++中Packer::pack_array方法的典型用法代码示例。如果您正苦于以下问题:C++ Packer::pack_array方法的具体用法?C++ Packer::pack_array怎么用?C++ Packer::pack_array使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Packer
的用法示例。
在下文中一共展示了Packer::pack_array方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: msgpack_pack
void msgpack_pack(Packer& pk) const {
int n = lua_gettop(L);
if (arg_base_ > n) {
if (pack_as_array_) pk.pack_array(0);
return;
}
// If pack_as_array is true, all elements in the stack
// will be serialized into an array. Otherwise,
// each element will be serialized independently.
if (pack_as_array_) pk.pack_array(n - arg_base_ + 1);
for (int i = arg_base_; i <= n; i++) {
pack(pk, i);
}
}
示例2: msgpack_pack
void msgpack_pack(Packer& _Pk) const {
_Pk.pack_array(4);
_Pk.pack(key);
_Pk.pack(ovalue);
_Pk.pack(nvalue);
_Pk.pack(xt);
}
示例3: packTableAsArray
void packTableAsArray(Packer& pk, int index) const {
int n = lua_gettop(L);
size_t len = lua_objlen(L, index);
pk.pack_array(len);
for (size_t i = 1; i <= len; i++) {
lua_rawgeti(L, index, i);
pack(pk, n + 1);
lua_pop(L, 1);
}
}
示例4: msgpack_pack
void msgpack_pack(Packer& pk) const
{
pk.pack_array(0);
}
示例5: msgpack_pack
void msgpack_pack(Packer& _Pk) const {
_Pk.pack_array(2);
_Pk.pack(login);
_Pk.pack(passw);
}