(Number x, Number y)
| 913 | } |
| 914 | |
| 915 | public Number divide(Number x, Number y){ |
| 916 | return Numbers.divide(toBigInteger(x), toBigInteger(y)); |
| 917 | } |
| 918 | |
| 919 | public Number quotient(Number x, Number y){ |
| 920 | return toBigInt(x).quotient(toBigInt(y)); |
nothing calls this directly
no test coverage detected