-
Notifications
You must be signed in to change notification settings - Fork 381
feat: Add more slice methods to the stdlib #5424
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
9c0c0e1
Add more slice methods
jfecher bdc8dff
Add append docs
jfecher 4ab353d
Move Append docs to traits.md
jfecher 2cab600
Add T::empty to beginning
jfecher c8bed04
Format stdlib
jfecher f74d613
Merge branch 'master' into jf/more-slice-methods
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| // Appends two values together, returning the result. | ||
| // | ||
| // An alternate name for this trait is `Monoid` if that is familiar. | ||
| // If not, it can be ignored. | ||
| // | ||
| // It is expected that for any implementation: | ||
| // - `T::empty().append(x) == x` | ||
| // - `x.append(T::empty()) == x` | ||
| // docs:start:append-trait | ||
| trait Append { | ||
| fn empty() -> Self; | ||
| fn append(self, other: Self) -> Self; | ||
| } | ||
| // docs:end:append-trait | ||
|
|
||
| impl<T> Append for [T] { | ||
| fn empty() -> Self { | ||
| &[] | ||
| } | ||
|
|
||
| fn append(self, other: Self) -> Self { | ||
| // Slices have an existing append function which this will resolve to. | ||
| self.append(other) | ||
| } | ||
| } | ||
|
|
||
| impl Append for Quoted { | ||
| fn empty() -> Self { | ||
| quote {} | ||
| } | ||
|
|
||
| fn append(self, other: Self) -> Self { | ||
| quote { $self $other } | ||
| } | ||
| } | ||
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| [package] | ||
| name = "slice_join" | ||
| type = "bin" | ||
| authors = [""] | ||
| compiler_version = ">=0.31.0" | ||
|
|
||
| [dependencies] |
16 changes: 16 additions & 0 deletions
16
test_programs/compile_success_empty/slice_join/src/main.nr
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| use std::append::Append; | ||
|
|
||
| fn main() { | ||
| let slice = &[1, 2, 3, 4, 5]; | ||
|
|
||
| let odds = slice.filter(|x| x % 2 == 1); | ||
| assert_eq(odds, &[1, 3, 5]); | ||
|
|
||
| let odds_and_evens = append_three(odds, &[100], &[2, 4]); | ||
| assert_eq(odds_and_evens, &[1, 3, 5, 100, 2, 4]); | ||
| } | ||
|
|
||
| fn append_three<T>(one: T, two: T, three: T) -> T where T: Append { | ||
| // The `T::empty()`s here should do nothing | ||
| T::empty().append(one).append(two).append(three).append(T::empty()) | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.