Skip to content

Instantly share code, notes, and snippets.

@kpgalligan
Created September 19, 2018 21:36
Show Gist options
  • Save kpgalligan/e8c580d631dec6441572488e67757708 to your computer and use it in GitHub Desktop.
Save kpgalligan/e8c580d631dec6441572488e67757708 to your computer and use it in GitHub Desktop.
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