floo::BMXResultPage
分页结果 More...
#include <bmx_result_page.h>
Inherits from BMXBaseObject
Public Functions
Name | |
---|---|
BMXResultPage() 构造函数 |
|
BMXResultPage(const std::vector< T > & result, int64_t offset) 构造函数 |
|
BMXResultPage(const std::vector< T > & result, std::string cursor) 构造函数 |
|
BMXResultPage(const BMXResultPage & from) 构造函数 |
|
BMXResultPage(BMXResultPage && from) 构造函数 |
|
BMXResultPage & | operator=(const BMXResultPage & from) 赋值函数 |
virtual | ~BMXResultPage() 析构函数 |
size_t | count() const vector对象数组大小 |
int64_t | offset() const 偏移量 |
const std::string & | cursor() const cursor偏移量 |
const std::vector< T > & | result() const vector对象数组 |
Detailed Description
template <typename T >
class floo::BMXResultPage;
分页结果
Public Functions Documentation
function BMXResultPage
inline BMXResultPage()
构造函数
Example:
function BMXResultPage
inline BMXResultPage(
const std::vector< T > & result,
int64_t offset
)
构造函数
Parameters:
- result 列表数据
- offset 偏移量
Example:
function BMXResultPage
inline BMXResultPage(
const std::vector< T > & result,
std::string cursor
)
构造函数
Parameters:
- result 列表结果
- cursor cursor偏移量
Example:
function BMXResultPage
inline BMXResultPage(
const BMXResultPage & from
)
构造函数
Parameters:
- from BMXResultPage对象
Example:
function BMXResultPage
inline BMXResultPage(
BMXResultPage && from
)
构造函数
Parameters:
- from BMXResultPage对象
Example:
function operator=
inline BMXResultPage & operator=(
const BMXResultPage & from
)
赋值函数
Parameters:
- from BMXResultPage对象
Return: BMXResultPage
Example:
function ~BMXResultPage
inline virtual ~BMXResultPage()
析构函数
Example:
function count
inline size_t count() const
vector对象数组大小
Return: size_t
Example:
function offset
inline int64_t offset() const
偏移量
Return: int64_t
Example:
function cursor
inline const std::string & cursor() const
cursor偏移量
Return: std::string
Example:
function result
inline const std::vector< T > & result() const
vector对象数组
Return: std::vector
Example:
Updated on 2022-01-26 at 17:20:40 +0800