operator / method
Implementation
Half operator /(dynamic f) {
final d = (f is Half)
? f.toDouble()
: (f is num)
? f.toDouble()
: 0;
return Half(toDouble() / d.toDouble());
}
Half operator /(dynamic f) {
final d = (f is Half)
? f.toDouble()
: (f is num)
? f.toDouble()
: 0;
return Half(toDouble() / d.toDouble());
}