/** Print the given integer to the output. */ @Inline private final void debug(int i) { Unsafe.debug(i); }
/** Print the given string to the output. */ @Inline private final void debug(String str) { Unsafe.debug(str); }