Function seckey::free

source ·
pub fn free<T: Sized>(t: T)
Expand description

Free a value

Note that this does not clean data outside of the stack.

use seckey::free;

let v = [1, 2, 3];
free(v);