*参照元 [#qfb3071f] #backlinks *説明 [#r3fba44a] -パス: [[gcc-8.3/gcc/poly-int.h]] -FIXME: これは何? --説明 **参考 [#q1d2bae6] *実装 [#pa6d27e3] /* The main class for polynomial integers. The class provides constructors that are necessarily missing from the POD base. */ 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 = (const Ca &); template<typename Ca> poly_int &operator += (const poly_int_pod<N, Ca> &); template<typename Ca> typename if_nonpoly<Ca, poly_int>::type &operator += (const Ca &); template<typename Ca> poly_int &operator -= (const poly_int_pod<N, Ca> &); template<typename Ca> typename if_nonpoly<Ca, poly_int>::type &operator -= (const Ca &); template<typename Ca> typename if_nonpoly<Ca, poly_int>::type &operator *= (const Ca &); poly_int &operator <<= (unsigned int); }; *コメント [#e26cc194]