present
Wraps value as AtField.Defined. Reads like natural English at call sites:
val post = Post(
text = "hello world",
reply = present(replyRef),
)Content copied to clipboard
Paired with presentOrNull for the null-coalescing path where the caller has a T? in hand and wants "non-null → set" / "null → explicit clear" semantics.