-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add more slice methods to the stdlib (#5424)
# Description ## Problem\* ## Summary\* Adds `filter` and `join` for slices to the stdlib along with the new `Append` trait to abstract over joining types. ## Additional Context These are methods I found would be useful while working on metaprogramming ## Documentation\* Check one: - [ ] No documentation needed. - [x] Documentation included in this PR. - [ ] **[For Experimental Features]** Documentation to be submitted in a separate PR. # PR Checklist\* - [x] I have tested the changes locally. - [x] I have formatted the changes with [Prettier](https://prettier.io/) and/or `cargo fmt` on default settings.
- Loading branch information
Showing
8 changed files
with
186 additions
and
13 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
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
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
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
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 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 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 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 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()) | ||
} |