Runtime tag check that also narrows the type of value to Tagged<Tag>.
value
Tagged<Tag>
if (hasTag(state, "Loaded")) { // state is Tagged<"Loaded"> here render(state) } Copy
if (hasTag(state, "Loaded")) { // state is Tagged<"Loaded"> here render(state) }
Runtime tag check that also narrows the type of
valuetoTagged<Tag>.