#[no_mangle]
pub unsafe extern "C" fn ket_process_measure(
    process: &mut Process,
    qubits: *const usize,
    qubits_size: usize,
    result: &mut usize
) -> i32
Expand description

Measures the specified qubits in the Process instance.

§Arguments

  • process - [in] A mutable reference to the Process instance.
  • qubits - [in] A mutable pointer to an array of mutable references to Qubit instances.
  • qubits_size - [in] The size of the qubits array.
  • result - [out] A mutable pointer to a usize where the measurement result will be stored.

§Returns

An integer representing the error code. 0 indicates success.

§Safety

This function is marked as unsafe due to the use of raw pointers.