Bring back type specific set

This commit is contained in:
DBotThePony 2024-02-25 16:50:52 +07:00
parent 7a0360b02f
commit 37c7bc3c77
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -1,5 +1,6 @@
package ru.dbotthepony.kommons.math
import it.unimi.dsi.fastutil.chars.CharAVLTreeSet
import ru.dbotthepony.kommons.util.IStruct4f
import kotlin.math.roundToInt
@ -247,7 +248,7 @@ class RGBAColor(red: Float, green: Float, blue: Float, alpha: Float = 1f) : IStr
return RGBAColor(r, g, b, a)
}
private val hexChars = HashSet<Char>()
private val hexChars = CharAVLTreeSet()
init {
"#0123456789abcdefABCDEF".forEach { hexChars.add(it) }