Use 0-based idx for array content

This commit is contained in:
cyqsimon 2022-02-10 16:32:53 +08:00
parent a8e9708aeb
commit 73a5f01263
No known key found for this signature in database
GPG key ID: 1D8CE2F297390D65

View file

@ -1216,10 +1216,10 @@ pub const fn and<U>(self, optb: Option<U>) -> Option<U>
/// Often used to chain fallible operations that may return [`None`].
///
/// ```
/// let arr_2d = [["A1", "A2"], ["B1", "B2"]];
/// let arr_2d = [["A0", "A1"], ["B0", "B1"]];
///
/// let item_0_1 = arr_2d.get(0).and_then(|row| row.get(1));
/// assert_eq!(item_0_1, Some(&"A2"));
/// assert_eq!(item_0_1, Some(&"A1"));
///
/// let item_2_0 = arr_2d.get(2).and_then(|row| row.get(0));
/// assert_eq!(item_2_0, None);