We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Was https://code.google.com/p/dart/issues/detail?id=18266
For the following method:
min(Iterable iterable, {Comparator comparator = Comparable.compare});
Currently the docs just display the following unstyled text for the default value:
function(Comparable#compare)
It would be useful if it linked to the Comparable.compare docs instead, as references in docs do, with similar styling.
Actually, should have been more general. I would want to link to any public names referenced by the default value expression. Examples:
final Duration ANIM_DURATION_DEFAULT = const Duration(milliseconds: 500); slideIn(Element el, {Duration duration : ANIM_DURATION_DEFAULT}); fadeIn(Element el, {Duration duration : ANIM_DURATION_DEFAULT}); // ... addChild(Node child, [Node parent = const Node.root()]) // ... rotate(num radians, {num min: -PI, max: PI}) // ...
The text was updated successfully, but these errors were encountered:
@seaneagan can you point me to some code in the wild that exhibits this kind of API design?
Sorry, something went wrong.
We do show and link const values now.
I don't see min(iterable) or addChild(child) in the SDK anymore.
Please re-open if there's a good example for us.
No branches or pull requests
Was https://code.google.com/p/dart/issues/detail?id=18266
For the following method:
Currently the docs just display the following unstyled text for the default value:
It would be useful if it linked to the Comparable.compare docs instead, as references in docs do, with similar styling.
Actually, should have been more general. I would want to link to any public names referenced by the default value expression. Examples:
The text was updated successfully, but these errors were encountered: