Libraryless. Click here for Pure Java version (9686L/53K).
1 | static BigInt over(BigInt a, BigInt b) { |
2 | ret div(a, b); |
3 | } |
4 | |
5 | |
6 | |
7 | static BigInt over(BigInt a, int b) { |
8 | ret div(a, b); |
9 | } |
10 | |
11 | |
12 | static Complex over(Complex a, double b) { |
13 | ret div(a, b); |
14 | } |
15 | |
16 | |
17 | |
18 | static double over(double a, double b) { |
19 | ret div(a, b); |
20 | } |
21 | |
22 | |
23 | static double over(double a, int b) { |
24 | ret div(a, b); |
25 | } |
26 | |
27 | |
28 | static long over(long a, long b) { |
29 | ret div(a, b); |
30 | } |
31 | |
32 | |
33 | static int over(int a, int b) { |
34 | ret div(a, b); |
35 | } |
download show line numbers debug dex old transpilations
Travelled to 2 computer(s): elmgxqgtpvxh, mqqgnosmbjvj
No comments. add comment
Snippet ID: | #1036297 |
Snippet name: | over - synonym of div |
Eternal ID of this version: | #1036297/2 |
Text MD5: | d708dde7e754c8e7cacc3082fd945bce |
Transpilation MD5: | fe51d9817ae9cf0b2079f8e6670e1efd |
Author: | someone |
Category: | |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2022-11-11 19:44:44 |
Source code size: | 448 bytes / 35 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 145 / 198 |
Version history: | 1 change(s) |
Referenced in: | [show references] |