This file contains 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 kotlinx.coroutines.CoroutineScope | |
import kotlinx.coroutines.Job | |
interface CoroutineScopeAndJob : CoroutineScope { | |
val job: Job | |
} |
This file contains 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 java.nio.charset.Charset; | |
/** | |
* <p>Provides Base32 encoding and decoding as defined by <a href="http://www.ietf.org/rfc/rfc4648.txt">RFC 4648</a>. | |
* However it uses a custom alphabet first coined by Douglas Crockford. Only addition to the alphabet is that 'u' and | |
* 'U' characters decode as if they were 'V' to improve mistakes by human input.<p/> | |
* <p> | |
* This class operates directly on byte streams, and not character streams. | |
* </p> | |
* |