Function vec_try_with_capacity
pub fn vec_try_with_capacity<T>(
capacity: usize,
) -> Result<Vec<T>, TryReserveError>Available on crate feature
evm only.Expand description
Tries to create a Vec with the given capacity.