pub fn bind_seeded<V>(
seed: V,
compute: impl Fn() -> V + 'static,
apply: impl Fn(&V) + 'static,
)where
V: PartialEq + 'static,Expand description
bind pre-seeded with the value already applied at build time: the initial run does NOT
re-apply (pieces pass initial values through realize props; §5.2’s no-duplicate-op rule).