本文整理汇总了C++中flex_date_time类的典型用法代码示例。如果您正苦于以下问题:C++ flex_date_time类的具体用法?C++ flex_date_time怎么用?C++ flex_date_time使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了flex_date_time类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。
示例1: _to_serializable
static void _to_serializable(flexible_type& data, schema_t& schema, const flex_date_time& input) {
schema.insert(std::make_pair("type", JSON::types::DATETIME));
flex_dict ret;
int32_t time_zone_offset = input.time_zone_offset();
ret.push_back(std::make_pair("posix_timestamp", input.posix_timestamp()));
ret.push_back(std::make_pair("tz_15_min_offset",
time_zone_offset == 64 ? FLEX_UNDEFINED : flexible_type(flex_int(time_zone_offset))));
ret.push_back(std::make_pair("microsecond", input.microsecond()));
data = ret;
}
开发者ID:FLMao,项目名称:SFrame,代码行数:12,代码来源:encoder.cpp
示例2: operator
inline FLEX_ALWAYS_INLINE_FLATTEN void operator()(flex_date_time& t, const flex_float u) const {
int64_t integral_part = std::floor(u);
int64_t us_part = (u - integral_part) * flex_date_time::MICROSECONDS_PER_SECOND;
t.set_posix_timestamp(t.posix_timestamp() - integral_part);
auto microsecond = t.microsecond() - us_part;
if (microsecond < 0) {
t.set_posix_timestamp(t.posix_timestamp() - 1);
microsecond += flex_date_time::MICROSECONDS_PER_SECOND;
}
t.set_microsecond(microsecond);
}
开发者ID:DreamStudio2015,项目名称:SFrame,代码行数:11,代码来源:flexible_type_detail.hpp
示例3: identical
/// Equality comparator, timezone is checked
inline bool identical(const flex_date_time& other) const{
return posix_timestamp() == other.posix_timestamp() &&
time_zone_offset() == other.time_zone_offset() &&
microsecond() == other.microsecond();
}
开发者ID:falconlulu,项目名称:GraphLab-Create-SDK,代码行数:6,代码来源:flexible_type_base_types.hpp
示例4: microsecond
/// Equality comparator, timezone is ignored.
inline bool operator==(const flex_date_time& other) const{
return
posix_timestamp() == other.posix_timestamp() &&
microsecond() == other.microsecond();
}
开发者ID:falconlulu,项目名称:GraphLab-Create-SDK,代码行数:6,代码来源:flexible_type_base_types.hpp
注:本文中的flex_date_time类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论