Source set: Android
public class CombinedGlanceModifier(
private val outer: GlanceModifier,
private val inner: GlanceModifier,
) : GlanceModifier
A node in a GlanceModifier chain. A CombinedModifier always contains at least two elements; a Modifier outer that wraps around the Modifier inner.
Functions
foldIn
Source set: Android
override fun <R> foldIn(initial: R, operation: (R, GlanceModifier.Element) -> R): R
foldOut
Source set: Android
override fun <R> foldOut(initial: R, operation: (GlanceModifier.Element, R) -> R): R
any
Source set: Android
override fun any(predicate: (GlanceModifier.Element) -> Boolean): Boolean
all
Source set: Android
override fun all(predicate: (GlanceModifier.Element) -> Boolean): Boolean
equals
Source set: Android
override fun equals(other: Any?): Boolean
hashCode
Source set: Android
override fun hashCode(): Int
toString
Source set: Android
override fun toString(): String