SubspaceModifier.Companion

object SubspaceModifier.Companion : SubspaceModifier


The companion object SubspaceModifier is the empty, default, or starter SubspaceModifier that contains no SubspaceModifierElements.

Summary

Inherited functions

From androidx.xr.compose.subspace.layout.SubspaceModifier
open Boolean

Returns true if predicate returns true for all SubspaceModifierElements in this SubspaceModifier or if this SubspaceModifier contains no Elements.

open Boolean

Returns true if predicate returns true for any SubspaceModifierElement in this SubspaceModifier.

open R
<R : Any?> foldIn(
    initial: R,
    operation: (SubspaceModifierElement<SubspaceModifier.Node>, R) -> R
)

Accumulates a value starting with initial and applying operation to the current value and each SubspaceModifierElement from outside in.

open R
<R : Any?> foldOut(
    initial: R,
    operation: (SubspaceModifierElement<SubspaceModifier.Node>, R) -> R
)

Accumulates a value starting with initial and applying operation to the current value and each SubspaceModifierElement from inside out.

open infix SubspaceModifier

Concatenates this modifier with another.

Public functions

toString

open fun toString(): String