-
-
Notifications
You must be signed in to change notification settings - Fork 338
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(List)!:
List::new
now accepts `IntoIterator<Item = Into<ListIt…
…em>>` (#672) This allows to build list like ``` List::new(["Item 1", "Item 2"]) ``` BREAKING CHANGE: `List::new` parameter type changed from `Into<Vec<ListItem<'a>>>` to `IntoIterator<Item = Into<ListItem<'a>>>`
- Loading branch information
1 parent
8bfd666
commit aef4956
Showing
3 changed files
with
173 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.