pub comptime fn unquote(code: Quoted) -> Quoted
Calling unquote as a macro (via unquote!(arg)) will unquote its argument. Since this is the effect ! already does, unquote itself does not need to do anything besides return its argument.
unquote!(arg)
!
unquote
Calling unquote as a macro (via
unquote!(arg)) will unquote its argument. Since this is the effect!already does,unquoteitself does not need to do anything besides return its argument.