klyn.Byte.operator/
method
public native static operator/( readonly a as Byte, readonly b as Byte ) as Double
Description

Divides one Byte value by another.

Parameters
  • a Dividend.
  • b Divisor.
Returns

The real quotient as a Double.

Throws
  • ZeroDivisionError if the divisor equals `Byte(0)` at runtime.
Example
assert Byte(9) / Byte(2) == 4.5