We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
rb_complex_polar
1 parent 2ad9f9d commit 87d2da7Copy full SHA for 87d2da7
2 files changed
complex.c
@@ -1778,12 +1778,6 @@ rb_complex_new_polar(VALUE x, VALUE y)
1778
return f_complex_polar(rb_cComplex, x, y);
1779
}
1780
1781
-VALUE
1782
-rb_complex_polar(VALUE x, VALUE y)
1783
-{
1784
- return rb_complex_new_polar(x, y);
1785
-}
1786
-
1787
VALUE
1788
rb_Complex(VALUE x, VALUE y)
1789
{
include/ruby/internal/intern/complex.h
@@ -87,10 +87,6 @@ VALUE rb_complex_new(VALUE real, VALUE imag);
87
*/
88
VALUE rb_complex_new_polar(VALUE abs, VALUE arg);
89
90
-RBIMPL_ATTR_DEPRECATED(("by: rb_complex_new_polar"))
91
-/** @old{rb_complex_new_polar} */
92
-VALUE rb_complex_polar(VALUE abs, VALUE arg);
93
94
RBIMPL_ATTR_PURE()
95
/**
96
* Queries the real part of the passed Complex.
0 commit comments