patch_seq_push_interned_symbol

Function patch_seq_push_interned_symbol 

Source
#[unsafe(no_mangle)]
pub unsafe extern "C" fn patch_seq_push_interned_symbol( stack: Stack, symbol_data: *const InternedSymbolData, ) -> Stack
Expand description

Push an interned symbol onto the stack (Issue #166)

This pushes a compile-time symbol literal that shares static memory. The SeqString has capacity=0 to mark it as interned (never freed).

Stack effect: ( – Symbol )

§Safety

The symbol_data pointer must point to a valid static InternedSymbolData structure.