#[unsafe(no_mangle)]pub unsafe extern "C" fn patch_seq_push_seqstring(
stack: Stack,
seq_str: SeqString,
) -> StackExpand description
Push a SeqString value onto the stack
This is used when we already have a SeqString (e.g., from closures). Unlike push_string which takes a C string, this takes a SeqString by value.
Stack effect: ( – String )
§Safety
The SeqString must be valid. This is only called from LLVM-generated code, not actual C code.