Uh oh!
There was an error while loading. Please reload this page.
std: Rename Chan/Port types and constructor - #12815
Merged
Merged
Conversation
brson
commented
Mar 10, 2014
Contributor
Epic renaming. |
* Chan<T> => Sender<T> * Port<T> => Receiver<T> * Chan::new() => channel() * constructor returns (Sender, Receiver) instead of (Receiver, Sender) * local variables named `port` renamed to `rx` * local variables named `chan` renamed to `tx` Closesrust-lang#11765
bors added a commit
that referenced
this pull request
Mar 13, 2014
* Chan<T> => Sender<T> * Port<T> => Receiver<T> * Chan::new() => channel() * constructor returns (Sender, Receiver) instead of (Receiver, Sender) * local variables named `port` renamed to `rx` * local variables named `chan` renamed to `tx` Closes#11765
chris-morgan added a commit
to chris-morgan/rust-http
that referenced
this pull request
Mar 13, 2014
tedhorst added a commit
to tedhorst/rust
that referenced
this pull request
Mar 14, 2014
bors added a commit
that referenced
this pull request
Mar 14, 2014
Fix a test that was missed in the chan/port renaming (PR #12815). This was missed because it is skipped on linux and windows, and the mac bots were moving at the time the PR landed.
flip1995 pushed a commit
to flip1995/rust
that referenced
this pull request
Jun 13, 2024
…_iteration, r=xFrednet Add `needless_character_iteration` lint Fixesrust-lang#4817. r? `@xFrednet` changelog: Add `needless_character_iteration` lint
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
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
portrenamed torxchanrenamed totxCloses#11765