亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? limits

?? The Standard Template Library, or STL, is a C++ library of container classes, algorithms, and iterat
??
?? 第 1 頁 / 共 2 頁
字號:
/* * Copyright (c) 1997 * Silicon Graphics Computer Systems, Inc. * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee, * provided that the above copyright notice appear in all copies and * that both that copyright notice and this permission notice appear * in supporting documentation.  Silicon Graphics makes no * representations about the suitability of this software for any * purpose.  It is provided "as is" without express or implied warranty. *//* NOTE: This is not portable code.  Parts of numeric_limits<> are * inherently machine-dependent, and this file is written for the MIPS * architecture and the SGI MIPSpro C++ compiler.  Parts of it (in * particular, some of the characteristics of floating-point types) * are almost certainly incorrect for any other platform. */#ifndef __SGI_CPP_LIMITS#define __SGI_CPP_LIMITS#include <limits.h>#include <float.h>#include <stl_config.h>__STL_BEGIN_NAMESPACEenum float_round_style {  round_indeterminate       = -1,  round_toward_zero         =  0,  round_to_nearest          =  1,  round_toward_infinity     =  2,  round_toward_neg_infinity =  3};enum float_denorm_style {  denorm_indeterminate = -1,  denorm_absent        =  0,  denorm_present       =  1};// The C++ standard (section 18.2.1) requires that some of the members of// numeric_limits be static const data members that are given constant-// initializers within the class declaration.  On compilers where the// __STL_STATIC_CONST_INIT_BUG macro is defined, it is impossible to write// a standard-conforming numeric_limits class.//// There are two possible workarounds: either initialize the data// members outside the class, or change them from data members to// enums.  Neither workaround is satisfactory: the former makes it// impossible to use the data members in constant-expressions, and the// latter means they have the wrong type and that it is impossible to// take their addresses.  We choose the former workaround.#ifdef __STL_STATIC_CONST_INIT_BUG# define __STL_DECLARE_LIMITS_MEMBER(__mem_type, __mem_name, __mem_value) \  enum { __mem_name = __mem_value }#else /* __STL_STATIC_CONST_INIT_BUG */# define __STL_DECLARE_LIMITS_MEMBER(__mem_type, __mem_name, __mem_value) \  static const __mem_type __mem_name = __mem_value#endif /* __STL_STATIC_CONST_INIT_BUG */// Base class for all specializations of numeric_limits.template <class __number>class _Numeric_limits_base {public:  __STL_DECLARE_LIMITS_MEMBER(bool, is_specialized, false);  static __number min() __STL_NOTHROW { return __number(); }  static __number max() __STL_NOTHROW { return __number(); }  __STL_DECLARE_LIMITS_MEMBER(int, digits,   0);  __STL_DECLARE_LIMITS_MEMBER(int, digits10, 0);  __STL_DECLARE_LIMITS_MEMBER(bool, is_signed,  false);  __STL_DECLARE_LIMITS_MEMBER(bool, is_integer, false);  __STL_DECLARE_LIMITS_MEMBER(bool, is_exact,   false);  __STL_DECLARE_LIMITS_MEMBER(int, radix, 0);  static __number epsilon() __STL_NOTHROW     { return __number(); }  static __number round_error() __STL_NOTHROW { return __number(); }  __STL_DECLARE_LIMITS_MEMBER(int, min_exponent,   0);  __STL_DECLARE_LIMITS_MEMBER(int, min_exponent10, 0);  __STL_DECLARE_LIMITS_MEMBER(int, max_exponent,   0);  __STL_DECLARE_LIMITS_MEMBER(int, max_exponent10, 0);  __STL_DECLARE_LIMITS_MEMBER(bool, has_infinity,      false);  __STL_DECLARE_LIMITS_MEMBER(bool, has_quiet_NaN,     false);  __STL_DECLARE_LIMITS_MEMBER(bool, has_signaling_NaN, false);  __STL_DECLARE_LIMITS_MEMBER(float_denorm_style,                              has_denorm,                              denorm_absent);  __STL_DECLARE_LIMITS_MEMBER(bool, has_denorm_loss,   false);  static __number infinity() __STL_NOTHROW      { return __number(); }  static __number quiet_NaN() __STL_NOTHROW     { return __number(); }  static __number signaling_NaN() __STL_NOTHROW { return __number(); }  static __number denorm_min() __STL_NOTHROW    { return __number(); }  __STL_DECLARE_LIMITS_MEMBER(bool, is_iec559,  false);  __STL_DECLARE_LIMITS_MEMBER(bool, is_bounded, false);  __STL_DECLARE_LIMITS_MEMBER(bool, is_modulo,  false);  __STL_DECLARE_LIMITS_MEMBER(bool, traps,            false);  __STL_DECLARE_LIMITS_MEMBER(bool, tinyness_before,  false);  __STL_DECLARE_LIMITS_MEMBER(float_round_style,                              round_style,                              round_toward_zero);};#ifdef __STL_STATIC_CONST_INIT_BUG# define __STL_DEFINE_NUMERIC_BASE_MEMBER(__type, __mem)#else /* __STL_STATIC_CONST_INIT_BUG */# define __STL_DEFINE_NUMERIC_BASE_MEMBER(__type, __mem) \  template <class __number>                              \  const __type _Numeric_limits_base<__number>:: __mem#endif /* __STL_STATIC_CONST_INIT_BUG */__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, is_specialized);__STL_DEFINE_NUMERIC_BASE_MEMBER(int, digits);__STL_DEFINE_NUMERIC_BASE_MEMBER(int, digits10);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, is_signed);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, is_integer);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, is_exact);__STL_DEFINE_NUMERIC_BASE_MEMBER(int, radix);__STL_DEFINE_NUMERIC_BASE_MEMBER(int, min_exponent);__STL_DEFINE_NUMERIC_BASE_MEMBER(int, max_exponent);__STL_DEFINE_NUMERIC_BASE_MEMBER(int, min_exponent10);__STL_DEFINE_NUMERIC_BASE_MEMBER(int, max_exponent10);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, has_infinity);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, has_quiet_NaN);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, has_signaling_NaN);__STL_DEFINE_NUMERIC_BASE_MEMBER(float_denorm_style, has_denorm);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, has_denorm_loss);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, is_iec559);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, is_bounded);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, is_modulo);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, traps);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, tinyness_before);__STL_DEFINE_NUMERIC_BASE_MEMBER(float_round_style, round_style);// Base class for integers.template <class _Int,          _Int __imin,          _Int __imax,          int __idigits = -1>class _Integer_limits : public _Numeric_limits_base<_Int> {public:  __STL_DECLARE_LIMITS_MEMBER(bool, is_specialized, true);  static _Int min() __STL_NOTHROW { return __imin; }  static _Int max() __STL_NOTHROW { return __imax; }  __STL_DECLARE_LIMITS_MEMBER(int,                              digits,                              (__idigits < 0) ? (int)(sizeof(_Int) * CHAR_BIT)                                                   - (__imin == 0 ? 0 : 1)                                               : __idigits);  __STL_DECLARE_LIMITS_MEMBER(int, digits10, (digits * 301) / 1000);                                 // log 2 = 0.301029995664...  __STL_DECLARE_LIMITS_MEMBER(bool, is_signed,  __imin != 0);  __STL_DECLARE_LIMITS_MEMBER(bool, is_integer, true);  __STL_DECLARE_LIMITS_MEMBER(bool, is_exact,   true);  __STL_DECLARE_LIMITS_MEMBER(int,  radix,      2);  __STL_DECLARE_LIMITS_MEMBER(bool, is_bounded, true);  __STL_DECLARE_LIMITS_MEMBER(bool, is_modulo, true);};#ifdef __STL_STATIC_CONST_INIT_BUG# define __STL_DEFINE_INTEGER_LIMITS_MEMBER(__type, __mem)#else /* __STL_STATIC_CONST_INIT_BUG */# define __STL_DEFINE_INTEGER_LIMITS_MEMBER(__type, __mem)              \  template <class _Int, _Int __imin, _Int __imax, int __idigits>        \  const __type _Integer_limits<_Int, __imin, __imax, __idigits>:: __mem#endif /* __STL_STATIC_CONST_INIT_BUG */__STL_DEFINE_INTEGER_LIMITS_MEMBER(bool, is_specialized);__STL_DEFINE_INTEGER_LIMITS_MEMBER(int, digits);__STL_DEFINE_INTEGER_LIMITS_MEMBER(int, digits10);__STL_DEFINE_INTEGER_LIMITS_MEMBER(bool, is_signed);__STL_DEFINE_INTEGER_LIMITS_MEMBER(bool, is_integer);__STL_DEFINE_INTEGER_LIMITS_MEMBER(bool, is_exact);__STL_DEFINE_INTEGER_LIMITS_MEMBER(int, radix);__STL_DEFINE_INTEGER_LIMITS_MEMBER(bool, is_bounded);__STL_DEFINE_INTEGER_LIMITS_MEMBER(bool, is_modulo);// Base class for floating-point numbers.template <class __number,         int __Digits, int __Digits10,         int __MinExp, int __MaxExp,         int __MinExp10, int __MaxExp10,         unsigned int __InfinityWord,         unsigned int __QNaNWord, unsigned int __SNaNWord,         bool __IsIEC559,         float_round_style __RoundStyle>class _Floating_limits : public _Numeric_limits_base<__number>{public:  __STL_DECLARE_LIMITS_MEMBER(bool, is_specialized, true);  __STL_DECLARE_LIMITS_MEMBER(int, digits,   __Digits);  __STL_DECLARE_LIMITS_MEMBER(int, digits10, __Digits10);  __STL_DECLARE_LIMITS_MEMBER(bool, is_signed, true);  __STL_DECLARE_LIMITS_MEMBER(int, radix, 2);  __STL_DECLARE_LIMITS_MEMBER(int, min_exponent,   __MinExp);  __STL_DECLARE_LIMITS_MEMBER(int, max_exponent,   __MaxExp);  __STL_DECLARE_LIMITS_MEMBER(int, min_exponent10, __MinExp10);  __STL_DECLARE_LIMITS_MEMBER(int, max_exponent10, __MaxExp10);  __STL_DECLARE_LIMITS_MEMBER(bool, has_infinity,      true);  __STL_DECLARE_LIMITS_MEMBER(bool, has_quiet_NaN,     true);  __STL_DECLARE_LIMITS_MEMBER(bool, has_signaling_NaN, true);  __STL_DECLARE_LIMITS_MEMBER(float_denorm_style,                              has_denorm,                              denorm_indeterminate);  __STL_DECLARE_LIMITS_MEMBER(bool, has_denorm_loss,   false);  static __number infinity() __STL_NOTHROW {    static const unsigned int _S_inf[sizeof(__number) / sizeof(int)] =       { __InfinityWord };

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
夜夜嗨av一区二区三区中文字幕| 精品免费视频.| 亚洲一区在线观看视频| 色菇凉天天综合网| 亚洲精品成人少妇| 欧美三级视频在线播放| 午夜精品久久一牛影视| 日韩一区二区三区在线视频| 久久成人免费日本黄色| 久久精品亚洲国产奇米99| 成人听书哪个软件好| 亚洲欧美偷拍卡通变态| 欧美久久久久免费| 国产剧情av麻豆香蕉精品| 国产精品免费视频网站| 91成人在线免费观看| 老汉av免费一区二区三区| 欧美国产日本视频| 欧美性大战久久久久久久蜜臀 | 日韩免费高清视频| 国产成人精品一区二区三区网站观看| 国产女同性恋一区二区| 在线中文字幕一区| 蜜臀av性久久久久蜜臀aⅴ流畅 | 国产精品国产三级国产普通话蜜臀 | 精品国产乱码久久久久久蜜臀 | 色综合久久久久久久久| 视频精品一区二区| 久久久九九九九| 在线区一区二视频| 久久精品国产精品亚洲红杏| 中文字幕亚洲电影| 欧美喷水一区二区| 成人免费毛片aaaaa**| 亚洲成人激情综合网| 久久精品男人天堂av| 欧美日韩一级黄| 成人动漫一区二区三区| 美日韩一区二区| 一区二区三区高清不卡| 国产亚洲欧美色| 69av一区二区三区| 色综合久久久久久久| 国产酒店精品激情| 日韩激情一二三区| 亚洲免费在线电影| 欧美经典一区二区| 精品日韩一区二区| 欧美精品少妇一区二区三区| 成人精品亚洲人成在线| 美日韩一级片在线观看| 亚洲动漫第一页| 亚洲三级小视频| 久久久久国产一区二区三区四区| 欧美日韩午夜在线视频| 国产高清久久久| 琪琪一区二区三区| 亚洲色图制服丝袜| 欧美成人伊人久久综合网| 欧美视频一区二区在线观看| 91在线国内视频| aaa欧美色吧激情视频| 国产电影精品久久禁18| 久久福利视频一区二区| 人人爽香蕉精品| 日韩av午夜在线观看| 亚洲一区在线看| 一区二区三区**美女毛片| 亚洲女爱视频在线| 亚洲欧洲精品一区二区精品久久久 | 在线播放一区二区三区| 色噜噜夜夜夜综合网| 97精品超碰一区二区三区| av一区二区三区| 91免费视频网址| 99re6这里只有精品视频在线观看| 国产一二三精品| 国产v综合v亚洲欧| 国产一区二区三区av电影| 激情都市一区二区| 日本不卡中文字幕| 美女精品一区二区| 国产一区二区精品在线观看| 国产麻豆一精品一av一免费| 国产做a爰片久久毛片| 国产精品一区免费在线观看| 国产精品亚洲视频| 91影院在线免费观看| 在线观看国产精品网站| 6080午夜不卡| 久久精品一区四区| 亚洲欧美视频在线观看视频| 一区二区三区资源| 日日摸夜夜添夜夜添国产精品| 日日噜噜夜夜狠狠视频欧美人| 麻豆国产欧美日韩综合精品二区| 国产自产2019最新不卡| av一区二区三区在线| 色爱区综合激月婷婷| 4438成人网| 久久精品欧美一区二区三区麻豆| 日韩一区欧美一区| 天堂精品中文字幕在线| 国产毛片精品一区| 99久久国产免费看| 91精品国产一区二区人妖| 日韩精品一区二区三区在线观看 | 波多野结衣视频一区| 日本丰满少妇一区二区三区| 日韩一级欧美一级| 国产精品国产自产拍高清av王其| 香蕉av福利精品导航| 国产精品夜夜嗨| 欧美日韩一区不卡| 亚洲国产精品成人综合| 亚洲图片一区二区| 高清不卡一二三区| 欧美日韩国产另类一区| 久久久综合九色合综国产精品| 亚洲欧美成aⅴ人在线观看 | 国产精品一区二区三区99| 色先锋aa成人| 国产日产亚洲精品系列| 亚洲亚洲精品在线观看| 国产不卡免费视频| 欧美一区二区三区四区高清 | 成人欧美一区二区三区1314| 亚洲自拍偷拍麻豆| 懂色av中文字幕一区二区三区| 欧美最猛性xxxxx直播| 国产亚洲精品福利| 日韩av一区二区在线影视| 91性感美女视频| 久久综合九色综合97婷婷| 亚洲综合小说图片| 白白色亚洲国产精品| 日韩欧美一级二级三级久久久| 亚洲色图欧洲色图| 粉嫩一区二区三区性色av| 欧美一区二区观看视频| 亚洲精品视频免费看| 久久精品99国产国产精| 欧美日韩国产精品成人| 亚洲人成在线播放网站岛国| 国产一区二区三区免费| 在线不卡的av| 亚洲国产视频网站| 91免费视频大全| 国产精品福利在线播放| 国产自产视频一区二区三区| 欧美一区二区三级| 日韩在线一区二区三区| 欧美性大战久久久久久久蜜臀 | 亚洲成人免费视频| 色噜噜狠狠色综合中国 | 亚洲国产成人av好男人在线观看| 成人在线视频一区| 国产欧美1区2区3区| 国产高清在线精品| 2020国产成人综合网| 免费在线一区观看| 欧美日本一区二区在线观看| 亚洲激情图片一区| 91麻豆精品秘密| 亚洲日本中文字幕区| 91在线视频播放| 亚洲蜜臀av乱码久久精品| 91在线精品秘密一区二区| 国产精品国产自产拍高清av| 高清在线成人网| 中文字幕在线视频一区| 99re6这里只有精品视频在线观看 99re8在线精品视频免费播放 | 99亚偷拍自图区亚洲| 国产精品久久毛片av大全日韩| 丁香亚洲综合激情啪啪综合| 2023国产精品自拍| 国产福利精品导航| 国产精品久久久久久久裸模| 99精品一区二区三区| 亚洲久草在线视频| 欧美日韩国产精品成人| 老司机一区二区| 久久久久久毛片| 成人18精品视频| 亚洲国产成人av网| 精品免费国产二区三区| 国产成人精品一区二区三区四区 | 91精品国产乱| 国产又黄又大久久| 国产精品久久777777| 91捆绑美女网站| 五月开心婷婷久久| 亚洲精品一线二线三线无人区| 激情成人综合网| 亚洲日本一区二区| 欧美日韩一级片在线观看| 韩日欧美一区二区三区| 国产精品久久福利| 91精品国产全国免费观看| 国产99久久久久|