Last active
September 20, 2019 17:47
-
-
Save TroyStopera/afca104db73b7e7399b4971a2be8e5e6 to your computer and use it in GitHub Desktop.
Boolean support for Parcel
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
import android.os.Parcel | |
fun Parcel.writeBoolean(boolean: Boolean) = writeByte(if (boolean) 1 else 0) | |
fun Parcel.readBoolean() = readByte() != 0.toByte() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment