Which function returns a pair after division ? (integer,frac)
    Vitaliy Fadeev 
    vital.fadeev at gmail.com
       
    Tue Sep 19 03:44:18 UTC 2023
    
    
  
What D function or D operator does this?
```asm
IDIV EAX, r/m32
```
```
IDIV 5, 2
  EAX = 2
  EDX = 1
```
and returns (2,1) at once?
    
    
More information about the Digitalmars-d-learn
mailing list