[][src]Function seckey::free

pub fn free<T: Sized>(t: T)

Free a value

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

use seckey::free;

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