Type Definition rustmex::Lhs

source · []
pub type Lhs<'mex> = &'mex mut [Option<MxArray>];
Expand description

The “left hand side” of a call to a mex function. In this slice, the return values should be placed.

The ’matlab lifetime means that the thing comes from matlab. The ’mex lifetime means that it lives for as long as the ’mex call lasts.