operator / method
Implementation
operator /(Object o){
switch(o){
case int i:
return this * (1 / i);
case double d:
return this * (1 / d);
}
}
operator /(Object o){
switch(o){
case int i:
return this * (1 / i);
case double d:
return this * (1 / d);
}
}