www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Wich: opIndex overloading by return type

reply =?iso-8859-1?Q?Robert_M._M=FCnch?= <robert.muench saphirion.com> writes:
Wouldn't it make a lot of sense to allow different opIndex 
implementations based on return type?

class myC {
	myT1 opIndex(int x)
	myT2 opIndex(int x)
}

Depending on the types involved myC[1] woudl return myT1 or myT2. 
Use-case: I have a geomentry object and in one case I get x0,y0,x1,y1 
and in the other case x,y,w,h

IMO that would make a lot of sense.

-- 
Robert M. Münch
http://www.saphirion.com
smarter | better | faster
Apr 19 2020
next sibling parent unDEFER <undefer gmail.com> writes:
It is easy. You can make both types as children of common parent 
class myT, and when return myT.
Apr 19 2020
prev sibling parent Steven Schveighoffer <schveiguy gmail.com> writes:
On 4/19/20 11:53 AM, Robert M. Münch wrote:
 Wouldn't it make a lot of sense to allow different opIndex 
 implementations based on return type?
 
 class myC {
      myT1 opIndex(int x)
      myT2 opIndex(int x)
 }
 
 Depending on the types involved myC[1] woudl return myT1 or myT2. 
 Use-case: I have a geomentry object and in one case I get x0,y0,x1,y1 
 and in the other case x,y,w,h
 
 IMO that would make a lot of sense.
 
D doesn't do overloading based on return type. You can do some things like return an item that alias this'd to one of the two, and then use an accessor for the other. Or you could provide indexers that operate with those types. e.g: myC.asT1[1] => T1 myC.asT2[1] => T2 -Steve
Apr 19 2020