Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created March 8, 2024 05:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skydoves/9bf8f867e3b7c4436d89f2c3d444e86b to your computer and use it in GitHub Desktop.
Save skydoves/9bf8f867e3b7c4436d89f2c3d444e86b to your computer and use it in GitHub Desktop.
knwon_stable_compose_compiler
object KnownStableConstructs {
val stableTypes = mapOf(
// Guava
"com.google.common.collect.ImmutableList" to 0b1,
"com.google.common.collect.ImmutableSet" to 0b1,
..
// Kotlinx immutable
"kotlinx.collections.immutable.ImmutableCollection" to 0b1,
"kotlinx.collections.immutable.ImmutableList" to 0b1,
..
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment