www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 11652] New: No numerical ^^ complex operation in std.complex

reply d-bugmail puremagic.com writes:
https://d.puremagic.com/issues/show_bug.cgi?id=11652

           Summary: No numerical ^^ complex operation in std.complex
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Phobos
        AssignedTo: nobody puremagic.com
        ReportedBy: joseph.wakeling webdrake.net



2013-11-30 08:42:53 PST ---
std.complex supports exponentiation of the form complex ^^ numeric but lacks
support for numeric ^^ complex.

Example:

    auto rec = 2.0 ^^ complex(1.1, 2.2);

results in

    Error: incompatible types for ((2.00000) ^^ (complex(1.1, 2.2))): 'double'
and 'Complex!double'

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Nov 30 2013
next sibling parent d-bugmail puremagic.com writes:
https://d.puremagic.com/issues/show_bug.cgi?id=11652




2013-11-30 08:43:48 PST ---
This is fairly easy to fix -- just add an opBinaryRight for numeric LHS with op
== "^^".  I'll submit a patch shortly.

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Nov 30 2013
prev sibling next sibling parent d-bugmail puremagic.com writes:
https://d.puremagic.com/issues/show_bug.cgi?id=11652




2013-12-01 03:14:56 PST ---
Pull request with fix:
https://github.com/D-Programming-Language/phobos/pull/1740

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Dec 01 2013
prev sibling next sibling parent d-bugmail puremagic.com writes:
https://d.puremagic.com/issues/show_bug.cgi?id=11652




Commit pushed to master at https://github.com/D-Programming-Language/phobos

https://github.com/D-Programming-Language/phobos/commit/2de19c7f7b13f63c1d74487ce4063b4283e97eae


Fix Issue 11652: support numerical ^^ complex operations in std.complex

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Dec 09 2013
prev sibling parent d-bugmail puremagic.com writes:
https://d.puremagic.com/issues/show_bug.cgi?id=11652


Joseph Rushton Wakeling <joseph.wakeling webdrake.net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Dec 09 2013