panpf / tools4k

Extensions to the Kotlin standard library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tools4K

Platform kotlin_jvmtarget_icon Download License

Extensions to the Kotlin standard library

Getting Started

This library has been published to mavenCentral. Add the following dependencies to your module build.gradle file :

implementation "io.github.panpf.tools4k:tools4k:${LAST_VERSION}"

${LAST_VERSION}: Download (no include 'v')

The "io.github.panpf.tools4k:tools4k:${LAST_VERSION}" dependency will add all the modules included in tools4k to your project. If you only need of one of the modules, you can just add it to your project, all supported modules as follows:

implementation "io.github.panpf.tools4k:tools4k-coroutines:$LAST_VERSION"
implementation "io.github.panpf.tools4k:tools4k-lang:$LAST_VERSION"

Dependencies:

  • org.jetbrains.kotlin:kotlin-stdlib-jdk7: 1.5.0
  • org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0

Modules

tools4j-coroutines

  • Coroutinesx: Coroutinesx.kt (Test)
    • launchOnGlobalDefault, launchOnGlobalMain, launchOnGlobalIO. launchOnGlobalUnconfined
    • asyncOnGlobalDefault, asyncOnGlobalMain, asyncOnGlobalIO. asyncOnGlobalUnconfined
    • syncOnGlobalDefault, syncOnGlobalMain, syncOnGlobalIO. syncOnGlobalUnconfined
    • CoroutineScope.launchOnDefault, CoroutineScope.launchOnMain, CoroutineScope.launchOnIO
    • CoroutineScope.launchOnUnconfined
    • CoroutineScope.asyncOnDefault, CoroutineScope.asyncOnMain, CoroutineScope.asyncOnIO
    • CoroutineScope.asyncOnUnconfined
    • CoroutineScope.syncOnDefault, CoroutineScope.syncOnMain, CoroutineScope.syncOnIO
    • CoroutineScope.syncOnUnconfined
    • withToDefault, withToMain, withToIO, withToUnconfined

tools4j-lang

Change Log

Please view the CHANGELOG.md file

License

Copyright (C) 2020 panpf <panpfpanpf@outlook.com>

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

Extensions to the Kotlin standard library

License:Apache License 2.0


Languages

Language:Kotlin 100.0%