Skip to content

Commit b362ec7

Browse files
authored
Add generic-array migration guide for Concat and Split (#44)
1 parent b9f5fb9 commit b362ec7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@
7777
//! - Replace `generic_array` with `hybrid_array`
7878
//! - Replace `GenericArray<T, U>` with `Array<T, U>`
7979
//! - Replace `ArrayLength<T>` with `ArraySize`
80+
//! - Replace usages of the `Concat` and `Split` traits with [`Array::concat`] and [`Array::split`]
8081
//! - Replace `<U as ArrayLength<T>>::ArrayType` with `<U as ArraySize>::ArrayType<T>`
8182
//! - Replace usages of the `arr![N; A, B, C]` macro with `Array([A, B, C])`
8283
//!

0 commit comments

Comments
 (0)