gcc-8.3/gcc/poly_int
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#qfb3071f]
#backlinks
*説明 [#r3fba44a]
-パス: [[gcc-8.3/gcc/poly-int.h]]
-FIXME: これは何?
--説明
**参考 [#q1d2bae6]
*実装 [#pa6d27e3]
/* The main class for polynomial integers. The class pr...
constructors that are necessarily missing from the PO...
template<unsigned int N, typename C>
class poly_int : public poly_int_pod<N, C>
{
-
--[[gcc-8.3/gcc/poly_int_pod]]
public:
poly_int () {}
template<typename Ca>
poly_int (const poly_int<N, Ca> &);
template<typename Ca>
poly_int (const poly_int_pod<N, Ca> &);
template<typename C0>
poly_int (const C0 &);
template<typename C0, typename C1>
poly_int (const C0 &, const C1 &);
template<typename Ca>
poly_int &operator = (const poly_int_pod<N, Ca> &);
template<typename Ca>
typename if_nonpoly<Ca, poly_int>::type &operator = (c...
template<typename Ca>
poly_int &operator += (const poly_int_pod<N, Ca> &);
template<typename Ca>
typename if_nonpoly<Ca, poly_int>::type &operator += (...
template<typename Ca>
poly_int &operator -= (const poly_int_pod<N, Ca> &);
template<typename Ca>
typename if_nonpoly<Ca, poly_int>::type &operator -= (...
template<typename Ca>
typename if_nonpoly<Ca, poly_int>::type &operator *= (...
poly_int &operator <<= (unsigned int);
};
*コメント [#e26cc194]
終了行:
*参照元 [#qfb3071f]
#backlinks
*説明 [#r3fba44a]
-パス: [[gcc-8.3/gcc/poly-int.h]]
-FIXME: これは何?
--説明
**参考 [#q1d2bae6]
*実装 [#pa6d27e3]
/* The main class for polynomial integers. The class pr...
constructors that are necessarily missing from the PO...
template<unsigned int N, typename C>
class poly_int : public poly_int_pod<N, C>
{
-
--[[gcc-8.3/gcc/poly_int_pod]]
public:
poly_int () {}
template<typename Ca>
poly_int (const poly_int<N, Ca> &);
template<typename Ca>
poly_int (const poly_int_pod<N, Ca> &);
template<typename C0>
poly_int (const C0 &);
template<typename C0, typename C1>
poly_int (const C0 &, const C1 &);
template<typename Ca>
poly_int &operator = (const poly_int_pod<N, Ca> &);
template<typename Ca>
typename if_nonpoly<Ca, poly_int>::type &operator = (c...
template<typename Ca>
poly_int &operator += (const poly_int_pod<N, Ca> &);
template<typename Ca>
typename if_nonpoly<Ca, poly_int>::type &operator += (...
template<typename Ca>
poly_int &operator -= (const poly_int_pod<N, Ca> &);
template<typename Ca>
typename if_nonpoly<Ca, poly_int>::type &operator -= (...
template<typename Ca>
typename if_nonpoly<Ca, poly_int>::type &operator *= (...
poly_int &operator <<= (unsigned int);
};
*コメント [#e26cc194]
ページ名: