Created
September 19, 2018 21:36
-
-
Save kpgalligan/e8c580d631dec6441572488e67757708 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package timber.log | |
internal actual class NativeBox<T> actual constructor(t:T){ | |
actual var value:T = t | |
} | |
internal actual inline fun <R> synchronized2(lock: Any, block: () -> R): R = synchronized(lock, block) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment