コード例 #1
0
inline lslboost::long_long_type lltrunc(const concepts::real_concept& v)
{ return lslboost::math::lltrunc(v.value(), policies::policy<>()); }
コード例 #2
0
inline int itrunc(const concepts::real_concept& v)
{ return lslboost::math::itrunc(v.value(), policies::policy<>()); }
コード例 #3
0
inline lslboost::long_long_type lltrunc(const concepts::real_concept& v, const Policy& pol)
{ return lslboost::math::lltrunc(v.value(), pol); }
コード例 #4
0
inline long lround(const concepts::real_concept& v)
{ return lslboost::math::lround(v.value(), policies::policy<>()); }
コード例 #5
0
inline int itrunc(const concepts::real_concept& v, const Policy& pol)
{ return lslboost::math::itrunc(v.value(), pol); }
コード例 #6
0
ファイル: real_concept.hpp プロジェクト: 13W/icq-desktop
inline long ltrunc(const concepts::real_concept& v)
{ return boost::math::ltrunc(v.value(), policies::policy<>()); }
コード例 #7
0
inline long lround(const concepts::real_concept& v, const Policy& pol)
{ return lslboost::math::lround(v.value(), pol); }
コード例 #8
0
ファイル: real_concept.hpp プロジェクト: 13W/icq-desktop
inline long ltrunc(const concepts::real_concept& v, const Policy& pol)
{ return boost::math::ltrunc(v.value(), pol); }
コード例 #9
0
ファイル: real_concept.hpp プロジェクト: 13W/icq-desktop
inline boost::long_long_type llround(const concepts::real_concept& v)
{ return boost::math::llround(v.value(), policies::policy<>()); }
コード例 #10
0
ファイル: real_concept.hpp プロジェクト: 13W/icq-desktop
inline boost::long_long_type llround(const concepts::real_concept& v, const Policy& pol)
{ return boost::math::llround(v.value(), pol); }
コード例 #11
0
ファイル: real_concept.hpp プロジェクト: 13W/icq-desktop
inline int iround(const concepts::real_concept& v)
{ return boost::math::iround(v.value(), policies::policy<>()); }
コード例 #12
0
ファイル: real_concept.hpp プロジェクト: 13W/icq-desktop
inline int iround(const concepts::real_concept& v, const Policy& pol)
{ return boost::math::iround(v.value(), pol); }