-
Updated
Jul 14, 2021 - Kotlin
kotlin-dsl
Here are 309 public repositories matching this topic...
-
Updated
Aug 8, 2021 - Kotlin
Extend existing collection extension methods like isEmpty
and isNotEmpty
to include contracts that imply whenever the verified collections are not null.
For example:
/**
* @return true if the array is null or has no elements.
*/
@OptIn(ExperimentalContracts::class)
fun <Type> GdxArray<Type>?.isEmpty(): Boolean {
contract {
returns(false) implies (this@isEmpty != nu
-
Updated
Jul 29, 2021 - Java
-
Updated
Feb 5, 2021 - Kotlin
CurlLoggingInterceptorTest
and HttpLoggingInterceptorTest
are very similar
It's a good idea to unify util methods for these and others
-
Updated
Jul 12, 2021 - Kotlin
-
Updated
Aug 9, 2021 - Kotlin
-
Updated
May 11, 2021 - Kotlin
-
Updated
Jul 24, 2021 - Kotlin
-
Updated
Apr 19, 2021 - Kotlin
-
Updated
Dec 15, 2020 - Kotlin
-
Updated
Mar 1, 2018 - Kotlin
-
Updated
Apr 15, 2021 - Kotlin
-
Updated
Aug 7, 2021 - Kotlin
-
Updated
May 8, 2020 - Kotlin
-
Updated
Oct 6, 2020 - Kotlin
-
Updated
Jul 23, 2021 - Kotlin
-
Updated
Jun 30, 2021 - Kotlin
-
Updated
Jun 10, 2021 - Kotlin
We want to separate the Encoders and Decoders of java time types on a separate module in order to keep the java 7 compatibility in the core module.
-
Updated
Oct 14, 2020 - Kotlin
Spring Boot
Make Telegraff platform-independent.
-
Updated
Aug 2, 2021 - Kotlin
-
Updated
Apr 12, 2020 - Java
-
Updated
Jul 14, 2021 - Kotlin
-
Updated
May 29, 2021 - Kotlin
-
Updated
Aug 6, 2021 - Kotlin
-
Updated
Jun 19, 2021 - Kotlin
Improve this page
Add a description, image, and links to the kotlin-dsl topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the kotlin-dsl topic, visit your repo's landing page and select "manage topics."
Add support for code coverage
Ideally we could setup jacoco + codecov to have an automated test report after every push/pr.
This feature is up for grab