Searched defs:complex (Results 1 – 1 of 1) sorted by relevance
36 struct complex { struct38 typedef complex<_Tp> _Self; argument41 complex() : _M_re(0), _M_im(0) {} in complex() argument42 complex(const value_type& __x) in complex() argument44 complex(const value_type& __x, const value_type& __y) in complex() argument46 complex(const _Self& __z) in complex() argument57 explicit complex(const complex<_Tp2>& __z) in complex() argument69 value_type real() const { return _M_re; } in real()70 value_type imag() const { return _M_im; } in imag()130 template <class _Tp2> _Self& operator/= (const complex<_Tp2>& __z) { argument[all …]