Skip to content
New issue

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

Time based LRU map #580

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ Alec Henninger <[email protected]>
Mark Fielbig <[email protected]>
Lucy Gettinger <[email protected]>
Michel Feinstein <[email protected]>
Raymond Cardillo <[email protected]>
12 changes: 7 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,14 @@ do this once.

### Contribution Guidelines

We welcome your pull requests, issue reports and enhacement requests. To make
We welcome your pull requests, issue reports and enhancement requests. To make
the process as smooth as possible, we request the following:

* Sign the [CLA](https://cla.developers.google.com/about/google-individual)
(see above) before sending your pull request. It's quick, we promise!
* Have test cases for your changes and ensure that the existing ones pass in
checked mode.
* Have test cases for your changes and ensure that the existing ones pass
with [assertions](https://dart.dev/guides/language/language-tour#assert)
enabled.
* Run your changes through `dartfmt`. Follow the installation instructions
in the [dart_style](https://github.com/dart-lang/dart_style) README for
more info.
Expand All @@ -29,5 +30,6 @@ the process as smooth as possible, we request the following:
* During code review, go ahead and pile up commits addressing review
comments. Once you get an LGTM (looks good to me) on the review, we'll
squash your commits and merge!
* If you're not already listed as an author in `pubspec.yaml`, remember to
add yourself and claim your rightful place amongst the Quiverati.
* If you're not already listed as an author in the [AUTHORS](./AUTHORS)
file, remember to add yourself and claim your rightful place amongst the
Quiverati.
8 changes: 5 additions & 3 deletions lib/collection.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,18 @@ import 'dart:math';
import 'package:meta/meta.dart';
import 'package:quiver/core.dart';
import 'package:quiver/iterables.dart';
import 'package:quiver/time.dart';

part 'src/collection/bimap.dart';
part 'src/collection/lru_map.dart';
part 'src/collection/multimap.dart';
part 'src/collection/treeset.dart';
part 'src/collection/delegates/iterable.dart';
part 'src/collection/delegates/list.dart';
part 'src/collection/delegates/map.dart';
part 'src/collection/delegates/queue.dart';
part 'src/collection/delegates/set.dart';
part 'src/collection/lru_map.dart';
part 'src/collection/multimap.dart';
part 'src/collection/tlru_map.dart';
part 'src/collection/treeset.dart';

/// Checks [List]s [a] and [b] for equality.
///
Expand Down
Loading