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

commonMain.CustomFibi.kt Maven / Gradle / Ivy

The newest version!
val fibi = sequence {
    var a = firstElement
    yield(a)
    var b = secondElement
    yield(b)
    while (true) {
        val c = a + b
        yield(c)
        a = b
        b = c
    }
}

expect val firstElement: Int
expect val secondElement: Int




© 2015 - 2025 Weber Informatics LLC | Privacy Policy