Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: packages/quiver/lib/core.dart

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « packages/quiver/lib/collection.dart ('k') | packages/quiver/lib/io.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/quiver/lib/core.dart
diff --git a/packages/quiver/lib/core.dart b/packages/quiver/lib/core.dart
index 8239f2d17150e1969c02549514254c581f2c917b..9b04015d8b16a545eaa7b64c0fcd3c45a03b7b45 100644
--- a/packages/quiver/lib/core.dart
+++ b/packages/quiver/lib/core.dart
@@ -12,20 +12,18 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-/**
- * Simple code with broad use cases.
- */
+/// Simple code with broad use cases.
library quiver.core;
+import 'dart:collection';
+
part 'src/core/hash.dart';
part 'src/core/optional.dart';
-/**
- * Returns the first non-null argument. If all arguments are null, throws
- * an [ArgumentError].
- *
- * Note: if [o1] is an [Optional], this can be accomplished with `o1.or(o2)`.
- */
+/// Returns the first non-null argument. If all arguments are null, throws an
+/// [ArgumentError].
+///
+/// Note: if [o1] is an [Optional], this can be accomplished with `o1.or(o2)`.
firstNonNull(o1, o2, [o3, o4]) {
if (o1 != null) return o1;
if (o2 != null) return o2;
« no previous file with comments | « packages/quiver/lib/collection.dart ('k') | packages/quiver/lib/io.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698