We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Lets consider class dart:io:Socket as an example. Its description reads:
abstract class Socket Implements Stream<List<int>>, IOSink
Lets look at the methods and properties of the class Socket On the front page:
first → Future<List<int>> Returns the first element of the stream. read-only, inherited
Following the link:
Future<T> first Returns the first element of the stream. Stops listening to the stream after the first element has been received.
Future<T> first Returns the first element of the stream.
Stops listening to the stream after the first element has been received.
Please, note that <List<int>> is now replaced by T, which is confusing. The same situation is observed for property last.
last
For methods situation is a bit different. On the front page:
distinct([bool equals(T previous, T next) ]) → Stream<List<int>> Skips data events if they are equal to the previous data event. inherited
Stream<T> distinct([bool equals(T previous, T next ) ]) Skips data events if they are equal to the previous data event.
Please, notice that parameter type T is replaced wih actual type sometimes.
pipe(StreamConsumer<List<int>> streamConsumer) → Future Pipe the events of this stream into streamConsumer. inherited
The text was updated successfully, but these errors were encountered:
@alsemenov, thanks for filing the issue. Dartdoc has it's own issue tracker at https://github.com/dart-lang/dartdoc/issues. I'll move the issue over there.
Sorry, something went wrong.
This issue was moved to dart-lang/dartdoc#1512
No branches or pull requests
Lets consider class dart:io:Socket as an example. Its description reads:
Lets look at the methods and properties of the class Socket
On the front page:
Following the link:
Please, note that <List<int>> is now replaced by T, which is confusing.
The same situation is observed for property
last
.For methods situation is a bit different. On the front page:
Following the link:
Please, notice that parameter type T is replaced wih actual type sometimes.
The text was updated successfully, but these errors were encountered: