Function Byond_WriteList

Source
pub unsafe extern "C-unwind" fn Byond_WriteList(
    loc: *const CByondValue,
    list: *const CByondValue,
    len: usize,
) -> bool
Expand description

Writes items to a list, in place of old contents. Blocks if not on the main thread.

§Arguments

  • loc - The list to fill
  • list - CByondValue array of items to write
  • len - Number of items to write

§Returns

True on success