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

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

?? tr1.qbk

?? Boost provides free peer-reviewed portable C++ source libraries. We emphasize libraries that work
?? QBK
?? 第 1 頁 / 共 5 頁
字號:
   // [5.1.7.6] Class template uniform_real   template<class RealType = double>   class uniform_real;   // [5.1.7.7] Class template exponential_distribution   template<class RealType = double>   class exponential_distribution;   // [5.1.7.8] Class template normal_distribution   template<class RealType = double>   class normal_distribution;   // [5.1.7.9] Class template gamma_distribution   template<class RealType = double>   class gamma_distribution;   } // namespace tr1   } // namespace std[*Configuration:][@../../libs/config/index.html Boost.Config] should (automatically) definethe macro BOOST_HAS_TR1_RANDOM if yourstandard library implements this part of TR1.[*Standard Conformity:]The Boost implementation has the following limitations:*The linear_congruential generator is fully supported for signed integer types only (unsigned types probably only work when the modulus is zero).*The subtract_with_carry template does not support a modulus of zero.*Not all of the standard generator types have Boost documentation yet, they arenone the less supported however.*Class template variate_generator does not have a template unary function call operator(), only the non-template nullary version.Note also that most of the Random number generators have been re-implemented as thin wrappers around the Boost versions in order toprovide a standard conforming interface (the Boost versions all take an additional,redundant, template parameter, and are initialized by iterators rather than functors).[endsect][section:tuple Tuples.]   #include <boost/tr1/tuple.hpp>or      #include <tuple>A tuple is a fixed size collection of elements. Pairs, triples, quadruples etc. are tuples. In a programming language, a tuple is a data object containing other objects as elements. These element objects may be of different types.Tuples are convenient in many circumstances. For instance, tuples make it easy to define functions that return more than one value.Some programming languages, such as ML, Python and Haskell, have built-in tuple constructs. Unfortunately C++ does not.To compensate for this "deficiency", the TR1 Tuple Library implements a tuple construct using templates.For more information see the [@../../libs/tuple/index.html Boost Tuple Library Documentation].   namespace std {   namespace tr1 {   // [6.1.3] Class template tuple   template <class T1 = unspecified ,   class T2 = unspecified ,   ...,   class TM = unspecified > class tuple;   // [6.1.3.2] Tuple creation functions   const unspecified ignore;   template<class T1, class T2, ..., class TN>   tuple<V1, V2, ..., VN> make_tuple(const T1&, const T2& , ..., const TN&);   // [6.1] Tuple types Containers   template<class T1, class T2, ..., class TN>   tuple<T1&, T2&, ..., TN&> tie(T1&, T2& , ..., TN&);   // [6.1.3.3] Tuple helper classes   template <class T> class tuple_size;   template <int I, class T> class tuple_element;   // [6.1.3.4] Element access   template <int I, class T1, class T2, ..., class TN>   RI get(tuple<T1, T2, ..., TN>&);   template <int I, class T1, class T2, ..., class TN>   PI get(const tuple<T1, T2, ..., TN>&);   // [6.1.3.5] relational operators   template<class T1, class T2, ..., class TM, class U1, class U2, ..., class UM>   bool operator==(const tuple<T1, T2, ..., TM>&, const tuple<U1, U2, ..., UM>&);   template<class T1, class T2, ..., class TM, class U1, class U2, ..., class UM>   bool operator<(const tuple<T1, T2, ..., TM>&, const tuple<U1, U2, ..., UM>&);   template<class T1, class T2, ..., class TM, class U1, class U2, ..., class UM>   bool operator!=(const tuple<T1, T2, ..., TM>&, const tuple<U1, U2, ..., UM>&);   template<class T1, class T2, ..., class TM, class U1, class U2, ..., class UM>   bool operator>(const tuple<T1, T2, ..., TM>&, const tuple<U1, U2, ..., UM>&);   template<class T1, class T2, ..., class TM, class U1, class U2, ..., class UM>   bool operator<=(const tuple<T1, T2, ..., TM>&, const tuple<U1, U2, ..., UM>&);   template<class T1, class T2, ..., class TM, class U1, class U2, ..., class UM>   bool operator>=(const tuple<T1, T2, ..., TM>&, const tuple<U1, U2, ..., UM>&);   } // namespace tr1   } // namespace std[*Configuration:][@../../libs/config/index.html Boost.Config] should (automatically) definethe macro BOOST_HAS_TR1_TUPLE if yourstandard library implements this part of TR1.[*Standard Conformity:]No known issues for conforming compilers.[endsect][section:utility Tuple Interface to std::pair.]   #include <boost/tr1/utility.hpp>or   #include <utility>The existing class template std::pair, can also be accessed using the [link boost_tr1.subject_list.tuple tuple interface].      namespace std {   namespace tr1 {   template <class T> class tuple_size; // forward declaration   template <int I, class T> class tuple_element; // forward declaration   template <class T1, class T2> struct tuple_size<std::pair<T1, T2> >;   template <class T1, class T2> struct tuple_element<0, std::pair<T2, T2> >;   template <class T1, class T2> struct tuple_element<1, std::pair<T2, T2> >;   // see below for definition of "P".   template<int I, class T1, class T2> P& get(std::pair<T1, T2>&);   template<int I, class T1, class T2> const P& get(const std::pair<T1, T2>&);   } // namespace tr1   } // namespace std[*Configuration:][@../../libs/config/index.html Boost.Config] should (automatically) definethe macro BOOST_HAS_TR1_UTILITY if yourstandard library implements this part of TR1.[*Standard Conformity:]No known problems.[endsect][section:array Fixed Size Array.]   #include <boost/tr1/array.hpp>   or   #include <array>   Class template array is a fixed size array that is safer than and noless efficient than a C style array.  Class array fulfils almost all of therequirements of a reversible-container (see Section 23.1, [lib.container.requirements] of the C++ Standard).  For more information referto the [@../../libs/array/index.html Boost.Array documentation].   namespace std {   namespace tr1 {   // [6.2.2] Class template array   template <class T, size_t N > struct array;   // Array comparisons   template <class T, size_t N> bool operator== (const array<T,N>& x, const array<T,N>& y);   template <class T, size_t N> bool operator< (const array<T,N>& x, const array<T,N>& y);   template <class T, size_t N> bool operator!= (const array<T,N>& x, const array<T,N>& y);   template <class T, size_t N> bool operator> (const array<T,N>& x, const array<T,N>& y);   template <class T, size_t N> bool operator>= (const array<T,N>& x, const array<T,N>& y);   template <class T, size_t N> bool operator<= (const array<T,N>& x, const array<T,N>& y);   // [6.2.2.2] Specialized algorithms   template <class T, size_t N > void swap(array<T,N>& x, array<T,N>& y);   // [6.2.2.5] Tuple interface to class template array   template <class T> class tuple_size; // forward declaration   template <int I, class T> class tuple_element; // forward declaration   template <class T, size_t N> struct tuple_size<array<T, N> >;   template <int I, class T, size_t N> struct tuple_element<I, array<T, N> >;   template <int I, class T, size_t N> T& get( array<T, N>&);   template <int I, class T, size_t N> const T& get(const array<T, N>&);   } // namespace tr1   } // namespace std[*Configuration:][@../../libs/config/index.html Boost.Config] should (automatically) definethe macro BOOST_HAS_TR1_ARRAY if yourstandard library implements this part of TR1.[*Standard Conformity:]No known issues as of Boost-1.34 onwards.[endsect][section:hash Hash Function Objects.]   #include <boost/tr1/functional.hpp>   or   #include <functional>Class template std::hash is a unary-functor that converts some type T into a hash-value,specializations of std::hash are provided for integer, character, floating point, and pointer types, plus the two string types std::string and std::wstring.See the [@../../libs/functional/hash/index.html Boost.Hash] documentation for more information.      namespace std {   namespace tr1 {   template <class T>    struct hash : public unary_function<T, size_t>   {      size_t operator()(T val)const;   };   // Hash function specializations   template <> struct hash<bool>;   template <> struct hash<char>;   template <> struct hash<signed char>;   template <> struct hash<unsigned char>;   template <> struct hash<wchar_t>;   template <> struct hash<short>;   template <> struct hash<int>;   template <> struct hash<long>;   template <> struct hash<unsigned short>;   template <> struct hash<unsigned int>;   template <> struct hash<unsigned long>;   template <> struct hash<float>;   template <> struct hash<double>;   template <> struct hash<long double>;   template<class T> struct hash<T*>;   template <> struct hash<std::string>;   template <> struct hash<std::wstring>;   } // namespace tr1   } // namespace std[*Configuration:][@../../libs/config/index.html Boost.Config] should (automatically) definethe macro BOOST_HAS_TR1_HASH if yourstandard library implements this part of TR1.[*Standard Conformity:]Boost.Hash adds specialisations of std::hash for a wider range of typesthan those required by TR1: Boost.Hash acts as a testbed for issue 6.18in the [@http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2005/n1756.pdf Library Extension Technical Report Issues List].[endsect][section:regex Regular Expressions.]   #include <boost/tr1/regex.hpp>   or   #include <regex>   This library provides comprehensive support for regular expressions,including either iterator or string based matching, searching, search-and-replace,iteration, and tokenization.  Both POSIX and ECMAScript (JavaScript) regularexpressions are supported.  For more information see the [@../../libs/regex/index.htmlBoost.Regex documentation].      namespace std {   namespace tr1 {   // [7.5] Regex constants   namespace regex_constants {   typedef bitmask_type syntax_option_type;   typedef bitmask_type match_flag_type;   typedef implementation-defined error_type;   } // namespace regex_constants   // [7.6] Class regex_error   class regex_error;   // [7.7] Class template regex_traits   template <class charT> struct regex_traits;   // [7.8] Class template basic_regex   template <class charT, class traits = regex_traits<charT> >    class basic_regex;   typedef basic_regex<char> regex;   typedef basic_regex<wchar_t> wregex;   // [7.8.6] basic_regex swap   template <class charT, class traits>   void swap(basic_regex<charT, traits>& e1,            basic_regex<charT, traits>& e2);                // [7.9] Class template sub_match   template <class BidirectionalIterator>   class sub_match;   typedef sub_match<const char*> csub_match;   typedef sub_match<const wchar_t*> wcsub_match;   typedef sub_match<string::const_iterator> ssub_match;   typedef sub_match<wstring::const_iterator> wssub_match;   // [7.9.2] sub_match non-member operators   /* Comparison operators omitted for clarity.... */   template <class charT, class ST, class BiIter>   basic_ostream<charT, ST>&      operator<<(basic_ostream<charT, ST>& os,                const sub_match<BiIter>& m);   // [7.10] Class template match_results   template <class BidirectionalIterator,            class Allocator = allocator<sub_match<BidirectionalIterator> > >   class match_results;   typedef match_results<const char*> cmatch;   typedef match_results<const wchar_t*> wcmatch;   typedef match_results<string::const_iterator> smatch;   typedef match_results<wstring::const_iterator> wsmatch;   // match_results comparisons   template <class BidirectionalIterator, class Allocator>   bool operator== (const match_results<BidirectionalIterator, Allocator>& m1,                  const match_results<BidirectionalIterator, Allocator>& m2);   template <class BidirectionalIterator, class Allocator>   bool operator!= (const match_results<BidirectionalIterator, Allocator>& m1,                  const match_results<BidirectionalIterator, Allocator>& m2);   // [7.10.6] match_results swap   template <class BidirectionalIterator, class Allocator>   void swap(match_results<BidirectionalIterator, Allocator>& m1,            match_results<BidirectionalIterator, Allocator>& m2);                // [7.11.2] Function template regex_match   template <class BidirectionalIterator, class Allocator, class charT, class traits>   bool regex_match(BidirectionalIterator first,                   BidirectionalIterator last,                  match_results<BidirectionalIterator, Allocator>& m,                  const basic_regex<charT, traits>& e,                  regex_constants::match_flag_type flags = regex_constants::match_default);   template <class BidirectionalIterator, class charT, class traits>   bool regex_match(BidirectionalIterator first,                   BidirectionalIterator last,                  const basic_regex<charT, traits>& e,                  regex_constants::match_flag_type flags = regex_constants::match_default);                       template <class charT, class Allocator, class traits>   bool regex_match(const charT* str,                   match_results<const charT*, Allocator>& m,                  const basic_regex<charT, traits>& e,                  regex_constants::match_flag_type flags = regex_constants::match_default);                       template <class ST, class SA, class Allocator, class charT, class traits>

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩一级片网站| 欧美精品自拍偷拍动漫精品| 亚洲激情网站免费观看| 日韩一区二区三区高清免费看看| 国产寡妇亲子伦一区二区| 一区二区三国产精华液| 欧美成人一区二区三区片免费| 成人激情综合网站| 日韩精品每日更新| 最新国产の精品合集bt伙计| 日韩一区二区三区精品视频| 色噜噜偷拍精品综合在线| 国产一区二区不卡在线| 亚洲第一搞黄网站| 中文字幕精品三区| 精品免费视频一区二区| 欧美日韩一级二级| 99久久伊人精品| 国内一区二区在线| 天天操天天色综合| 亚洲三级电影全部在线观看高清| 欧美精品一区二区三区蜜臀| 欧美日韩视频不卡| 97精品久久久久中文字幕 | 麻豆国产精品官网| 一区二区三区四区在线| 国产精品视频看| 26uuu色噜噜精品一区| 欧美日韩亚洲综合一区| 在线免费观看视频一区| 99re6这里只有精品视频在线观看| 国产精品综合在线视频| 蜜桃av一区二区| 视频一区在线视频| 一区二区三区精品| 亚洲日穴在线视频| 日韩理论片一区二区| 亚洲国产精品二十页| 久久精品在线观看| 精品国产一区二区三区忘忧草| 91精品免费在线| 欧美猛男男办公室激情| 在线观看欧美黄色| 欧美视频自拍偷拍| 在线观看视频一区二区| 欧美性色综合网| 欧美性大战久久| 欧美日韩国产123区| 欧美日韩免费高清一区色橹橹| 91国产丝袜在线播放| 一本大道久久a久久综合婷婷| 日韩欧美国产系列| 51精品视频一区二区三区| 欧美日韩国产高清一区二区| 欧美日韩免费在线视频| 欧美福利电影网| 91精品婷婷国产综合久久竹菊| 91精品国产一区二区三区蜜臀 | 精品国偷自产国产一区| 日韩视频免费直播| 2024国产精品视频| 久久久精品国产免大香伊| 欧美激情一区二区在线| 国产精品妹子av| 亚洲精品成a人| 丝袜诱惑制服诱惑色一区在线观看| 五月婷婷另类国产| 久草精品在线观看| 国产精华液一区二区三区| 成人一区二区视频| 色婷婷精品久久二区二区蜜臀av | 激情偷乱视频一区二区三区| 国产伦精品一区二区三区免费 | 色婷婷狠狠综合| 欧美中文字幕亚洲一区二区va在线 | 极品少妇一区二区三区精品视频| 捆绑调教一区二区三区| 欧美日本精品一区二区三区| 欧美大片日本大片免费观看| 国产女同互慰高潮91漫画| 综合亚洲深深色噜噜狠狠网站| 亚洲一区在线观看免费| 久久精品久久综合| 从欧美一区二区三区| 欧美视频中文一区二区三区在线观看| 欧美一区在线视频| 中文字幕欧美激情| 婷婷综合五月天| 国产专区欧美精品| 在线观看日韩精品| 欧美大片免费久久精品三p| 国产精品久久久久永久免费观看 | 久久女同精品一区二区| 亚洲日本青草视频在线怡红院| 午夜精品123| 国产99久久久国产精品| 欧美亚洲综合网| 国产校园另类小说区| 亚洲图片有声小说| 福利一区在线观看| 欧美久久久久久久久| 中文字幕免费观看一区| 日本va欧美va欧美va精品| 91一区二区在线观看| 日韩欧美在线网站| 一区二区三区在线观看视频| 国产乱码精品一区二区三区五月婷 | 成人成人成人在线视频| 91精品午夜视频| 一区二区三区四区av| 国产精品乡下勾搭老头1| 欧美久久久影院| 中文字幕中文字幕一区| 久久国产婷婷国产香蕉| 欧美天天综合网| 136国产福利精品导航| 久久精品免费观看| 欧美精品乱码久久久久久按摩 | 欧美亚洲综合久久| 国产欧美精品在线观看| 伦理电影国产精品| 欧美日韩国产综合一区二区三区| 国产精品久久久久久久久动漫 | 国产大片一区二区| 日韩精品一区二区三区视频 | 国产老肥熟一区二区三区| 666欧美在线视频| 亚洲一区二区三区四区的| av色综合久久天堂av综合| 欧美精品一区二区三区很污很色的 | 成人av片在线观看| 久久久久久久久久美女| 久久se精品一区精品二区| 91精品国产综合久久香蕉的特点| 樱花草国产18久久久久| 91视频在线看| **欧美大码日韩| 成人av集中营| 国产精品看片你懂得| 成人激情校园春色| 国产精品久久久久久久久图文区| 高清成人在线观看| 欧美激情中文字幕一区二区| 国产成a人亚洲| 中文字幕欧美日本乱码一线二线| 成人综合日日夜夜| 国产精品丝袜黑色高跟| 成人app软件下载大全免费| 国产精品久久久一本精品| voyeur盗摄精品| 亚洲男人天堂av| 欧美亚一区二区| 亚洲国产中文字幕在线视频综合| 欧美视频一区在线观看| 天天av天天翘天天综合网色鬼国产 | 成人一区二区三区视频| 亚洲国产精品ⅴa在线观看| 成人激情小说乱人伦| 日韩伦理av电影| 欧美色图一区二区三区| 日韩精品欧美精品| 欧美精品一区二区三区蜜桃| 国产成人av福利| 亚洲欧美日韩国产成人精品影院| 在线中文字幕一区| 天堂精品中文字幕在线| 欧美videofree性高清杂交| 国产精选一区二区三区| 综合在线观看色| 欧美日韩精品三区| 精品一区二区三区在线播放视频 | 日韩av电影免费观看高清完整版 | 91视频一区二区三区| 亚洲一级电影视频| 日韩欧美一级精品久久| 国产盗摄一区二区| 亚洲一卡二卡三卡四卡| 精品日韩成人av| eeuss影院一区二区三区 | 亚洲精品日产精品乱码不卡| 欧美人与禽zozo性伦| 国产一本一道久久香蕉| 亚洲欧美偷拍另类a∨色屁股| 欧美精品v日韩精品v韩国精品v| 国产在线国偷精品产拍免费yy| 成人免费一区二区三区视频| 欧美日韩不卡在线| 国产suv精品一区二区6| 亚洲国产一二三| 久久天堂av综合合色蜜桃网| 国产亚洲婷婷免费| 色www精品视频在线观看| 久久国产人妖系列| 亚洲另类在线制服丝袜| 精品欧美乱码久久久久久1区2区| 91在线视频在线| 麻豆成人综合网| 亚洲精品久久久久久国产精华液| 欧美成人vps| 欧美在线|欧美|