commonMain.CustomFibi.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of library-jvm Show documentation
Show all versions of library-jvm Show documentation
CSS alike shadow support for for Jetpack Compose & Multiplatform.
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