()
| 30 | } |
| 31 | |
| 32 | public static long microseconds() { |
| 33 | // epoch micros = seconds * 1_000_000 + nanos/1000 |
| 34 | Instant now = Instant.now(); |
| 35 | return now.getEpochSecond() * 1_000_000L + (now.getNano() / 1_000); |
| 36 | } |
| 37 | |
| 38 | // -------- parsing helpers -------- |
| 39 |
no outgoing calls
no test coverage detected