Skip to content

Commit

Permalink
v0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
elect86 committed Aug 6, 2018
1 parent 0c24215 commit 869ee1b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ group = 'com.github.kotlin-graphics'

buildscript {

ext.kotlinVersion = '1.2.51'
ext.kotlinVersion = '1.2.60'

repositories {
mavenCentral()
Expand All @@ -36,9 +36,9 @@ dependencies {
implementation "$kotlin-reflect:$kotlinVersion"

ext.kx = "com.github.kotlin-graphics"
implementation "$kx:gln:399cd2a1d7"
implementation "$kx:vkk:9dc6cfc"
implementation "$kx:appBuffer:23e9166e41"
implementation "$kx:gln:294d84e53f"
implementation "$kx:vkk:86fe39a"
implementation "$kx:appBuffer:39d8216"

testImplementation 'io.kotlintest:kotlintest:2.0.7'
testImplementation 'io.kotlintest:kotlintest-runner-junit5:3.0.6'
Expand Down
4 changes: 3 additions & 1 deletion src/main/kotlin/uno/kotlin/util.kt
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,6 @@ infix operator fun <T>StringBuilder.plusAssign(element: T) {
fun <T>treeSetOf() = java.util.TreeSet<T>()

fun <K, V>SortedMap<K, V>.getOrfirst(key: K): V? = get(key) ?: first
val <K, V>SortedMap<K, V>.first: V? get() = get(firstKey())
val <K, V>SortedMap<K, V>.first: V? get() = get(firstKey())

val version = "0.7.3"

0 comments on commit 869ee1b

Please sign in to comment.