patch_seq_push_seqstring

Function patch_seq_push_seqstring 

Source
#[unsafe(no_mangle)]
pub unsafe extern "C" fn patch_seq_push_seqstring( stack: Stack, seq_str: SeqString, ) -> Stack
Expand 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.