All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.dsl.Hash.kt Maven / Gradle / Ivy

The newest version!
package org.openrndr.orsl.shadergenerator.dsl

fun hash(vararg items: Any): UInt {
    var hash = 0
    for (item in items) {
        hash = hash * 31 + item.hashCode()
    }
    return hash.toUInt()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy