Skip to content

Commit

Permalink
Add generic-array migration guide for Concat and Split (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri authored Feb 15, 2024
1 parent b9f5fb9 commit b362ec7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
//! - Replace `generic_array` with `hybrid_array`
//! - Replace `GenericArray<T, U>` with `Array<T, U>`
//! - Replace `ArrayLength<T>` with `ArraySize`
//! - Replace usages of the `Concat` and `Split` traits with [`Array::concat`] and [`Array::split`]
//! - Replace `<U as ArrayLength<T>>::ArrayType` with `<U as ArraySize>::ArrayType<T>`
//! - Replace usages of the `arr![N; A, B, C]` macro with `Array([A, B, C])`
//!
Expand Down

0 comments on commit b362ec7

Please sign in to comment.