本文簡要介紹rust語言中 Function core::array::try_from_fn
的用法。
用法
pub fn try_from_fn<E, F, T, const N: usize>(cb: F) -> Result<[T; N], E> where F: FnMut(usize) -> Result<T, E>,
創建一個數組 [T; N]
,其中每個易錯數組元素 T
由 cb
調用返回。與 core::array::from_fn
不同,元素創建不會失敗,如果任何元素創建不成功,此版本將返回錯誤。
參數
cb
:回調,其中傳遞的參數是當前數組索引。
示例
#![feature(array_from_fn)]
#[derive(Debug, PartialEq)]
enum SomeError {
Foo,
}
let array = core::array::try_from_fn(|i| Ok::<_, SomeError>(i));
assert_eq!(array, Ok([0, 1, 2, 3, 4]));
let another_array = core::array::try_from_fn::<SomeError, _, (), 2>(|_| Err(SomeError::Foo));
assert_eq!(another_array, Err(SomeError::Foo));
相關用法
- Rust try_exists用法及代碼示例
- Rust try用法及代碼示例
- Rust transmute_copy用法及代碼示例
- Rust transmute用法及代碼示例
- Rust type_name用法及代碼示例
- Rust take_hook用法及代碼示例
- Rust take用法及代碼示例
- Rust thread_local用法及代碼示例
- Rust todo用法及代碼示例
- Rust type_name_of_val用法及代碼示例
- Rust tuple用法及代碼示例
- Rust temp_dir用法及代碼示例
- Rust UdpSocket.set_multicast_loop_v6用法及代碼示例
- Rust i64.overflowing_add_unsigned用法及代碼示例
- Rust Box.downcast用法及代碼示例
- Rust BTreeMap.last_key_value用法及代碼示例
- Rust str.make_ascii_uppercase用法及代碼示例
- Rust u128.checked_pow用法及代碼示例
- Rust usize.wrapping_mul用法及代碼示例
- Rust AtomicU8.fetch_sub用法及代碼示例
- Rust PanicInfo.payload用法及代碼示例
- Rust MaybeUninit.assume_init_mut用法及代碼示例
- Rust String.try_reserve用法及代碼示例
- Rust Mutex.new用法及代碼示例
- Rust f32.exp用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 Function core::array::try_from_fn。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。