quiver
v3.2.2Quiver is a set of utility libraries for Dart that makes using many Dart libraries easier and more convenient, or adds additional functionality.
Package archive: https://pubdev.letsnova.ru/api/archives/quiver/3.2.2.tar.gz
dart pub add quiverReadme
A set of utility libraries for Dart that makes using many Dart libraries easier and more convenient, or adds additional functionality.
Documentation
API Docs are available.
Main Libraries
quiver.async
Utilities for working with Futures, Streams and async computations.
collect collects the completion events of an Iterable of Futures into a
Stream.
enumerate and concat represent Stream versions of the same-named
quiver.iterables methods.
StreamBuffer allows for the orderly reading of elements from a stream, such as
a socket.
FutureStream turns a Future<Stream> into a Stream which emits the same
events as the stream returned from the future.
StreamRouter splits a Stream into multiple streams based on a set of
predicates.
CountdownTimer is a simple countdown timer that fires events in regular
increments.
Metronome is a self-correcting alternative to Timer.periodic. It provides a
simple, tracking periodic stream of DateTime events with optional anchor time.
stringFromByteStream constructs a string from a stream of byte lists.
quiver.cache
Cache is a semi-persistent, asynchronously accessed, mapping of keys to
values. Caches are similar to Maps, except that the cache implementation might
store values in a remote system, so all operations are asynchronous, and caches
might have eviction policies.
MapCache is a Cache implementation backed by a Map.
quiver.check
checkArgument throws ArgumentError if the specified argument check
expression is false.
checkListIndex throws RangeError if the specified index is out of bounds.
checkState throws StateError if the specified state check expression is
false.
quiver.collection
listsEqual, mapsEqual and setsEqual check collections for equality.
indexOf finds the first index of an item satisfying a predicate.
LruMap is a map that removes the least recently used item when a threshold
length is exceeded.
Multimap is an associative collection that maps keys to collections of values.
BiMap is a bidirectional map and provides an inverse view, allowing lookup of
key by value.
TreeSet is a balanced binary tree that offers a bidirectional iterator, the
ability to iterate from an arbitrary anchor, and 'nearest' search.
quiver.core
Optional is a way to represent optional values without allowing null.
hashObjects, hash2, hash3, and hash4 generate high-quality hashCodes for
a list of objects, or 2, 3, or 4 arguments respectively.
quiver.iterables
concat, count, cycle, enumerate, merge, partition, range, and
zip create, transform, or combine Iterables in different ways, similar to
Python's itertools.
min, max, and extent retrieve the minimum and maximum elements from an
iterable.
GeneratingIterable is an easy way to create lazy iterables that produce
elements by calling a function. A common use-case is to traverse properties in
an object graph, like the parent relationship in a tree.
InfiniteIterable is a base class for Iterables that throws on operations that
require a finite length.
quiver.pattern
pattern.dart container utilities for work with Patterns and RegExps.
Glob implements glob patterns that are commonly used with filesystem paths.
matchesAny combines multiple Patterns into one, and allows for exclusions.
matchesFull returns true if a Pattern matches an entire String.
escapeRegex escapes special regex characters in a String so that it can be
used as a literal match inside of a RegExp.
quiver.strings
isBlank checks if a string is null, empty or made of whitespace characters.
isNotBlank checks if a string is not null, and not blank.
isEmpty checks if a string is null or empty.
isNotEmpty checks if a string is not null and not empty.
equalsIgnoreCase checks if two strings are equal, ignoring case.
compareIgnoreCase compares two strings, ignoring case.
loop allows you to loop through characters in a string starting and ending at
arbitrary indices. Out of bounds indices allow you to wrap around the string,
supporting a number of use-cases, including:
- Rotating:
loop('lohel', -3, 2) => 'hello' - Repeating, like
String'soperator*, but with better character-level control, e.g.:loop('la ', 0, 8) => 'la la la' // no trailing space - Tailing:
loop('/path/to/some/file.txt', -3) => 'txt' - Reversing:
loop('top', 3, 0) => 'pot'
quiver.time
Clock provides points in time relative to the current point in time, for
example: now, 2 days ago, 4 weeks from now, etc. For testability, use Clock
rather than other ways of accessing time, like new DateTime(), so that you can
use a fake time function in your tests to control time.
Now is a typedef for functions that return the current time in microseconds,
since Clock deals in DateTime which only have millisecond accuracy.
aMicrosecond, aMillisecond, aSecond, aMinute, anHour, aDay, and
aWeek are unit duration constants to allow writing for example:
aDayvs.const Duration(days: 1)aSecond * 30vs.const Duration(seconds: 30)
Testing Libraries
The Quiver testing libraries are intended to be used in testing code, not production code. It currently consists of fake implementations of some Quiver interfaces.
quiver.testing.async
FakeAsync enables testing of units which depend upon timers and microtasks. It
supports fake advancements of time and the microtask queue, which cause fake
timers and microtasks to be processed. A Clock is provided from which to read
the current fake time. Faking synchronous or blocking time advancement is also
supported.
quiver.testing.equality
areEqualityGroups is a matcher that supports testing operator== and
hashCode implementations.
quiver.testing.time
FakeStopwatch is a Stopwatch that uses a provided now() function to get the
current time.
Changelog
3.2.2
- Fix a number of doc comment issues.
- Re-deprecate
Optionalbut provide more nuance to the documentation.
3.2.1 - 2022-12-20
- Un-deprecate
Optional. Causing breaks with hints internally at Google. Need to remove all usages before we try to land again.
3.2.0 - 2022-12-20 (Retracted)
- Deprecate
Optional. With the introduction of non-null by default in Dart SDK 2.12, existing users should migrate to non-nullable types. This type will be removed in Quiver 4.0.0. - Make
TreeIteratornot implement deprecatedBidirectionalIterator. ThemovePreviousmethod still exists onTreeIterator. - Require Dart 2.17
3.1.0 - 2022-05-03
- Fix: Make Cache.get ifAbsent parameter nullable. The parameter was always optional; this just corrects the type.
- Fix: Remove documentation links to the (previously removed) mirrors library.
3.0.1+2 - 2022-03-09
- Remove broken references to the defunct mirrors library.
3.0.1+1 - 2021-10-14
- Add documentation to
Optionalsuggesting that adding new uses be avoided and existing uses should be migrated to nullable types in codebases where non-null by default has been enabled.
3.0.1 - 2021-04-06
- Fix: Eliminate null check error on removal of root node of
AVLTree. - Fix: Eliminate null check in partition internal iterator
currentgetter. - Minor documentation typo corrections.
3.0.0 - 2021-02-16
- BREAKING CHANGE: This version requires Dart SDK 2.12.0 or later.
- BREAKING CHANGE: Remove
assertCheckedMode. This was deprecated in 2.1.2. Checked mode no longer exists in Dart 2.0 since the vast majority of what checked mode did is now done in the type system itself. - BREAKING CHANGE: Remove
doWhileAsync. This was deprecated in 2.1.1. Existing callers should migrate toFuture.doWhile(). - BREAKING CHANGE: Remove IO library. This was deprecated in 2.1.4.
- BREAKING CHANGE: Remove mirrors library. This was deprecated in 2.1.4.
- BREAKING CHANGE: forEachAsync now returns Future
instead of Future . - BREAKING CHANGE: BiMap no longer throws ArgumentError on insertion of a null key or value, if the corresponding K or V type is nullable. As before, values in the map must be unique and ArgumentError is thrown on attempts to add a key-value pair whose value is already in the map.
- BREAKING CHANGE:
TreeSet.firstandTreeSet.lastnow throw StateError if no element exists, as specified by the Set API contract both with null safety enabled or disabled. - BREAKING CHANGE:
TreeSetiterators now throw ifIterator.currentis called beforemoveNextis called, or aftermoveNexthas returned false when running with null safety enabled. - Deprecate
checkNotNull. Users of this function should migrate toArgumentError.checkNotNull. This will be removed in 4.0.0. - Deprecate
firstNonNull. Users of this function should migrate tovar v = o1 ?? o2 ?? o3 ?? o4; ArgumentError.checkNotNull(v);. This will be removed in 4.0.0 - Eliminate dependency on package:meta.
2.1.5 - 2020-11-05
- Deprecate
forEachAsync,reduceAsync. Existing callers should migrate toFuture.forEach. Migration examples have been added to the documentation for these methods. This will be removed in Quiver 3.0.0.
2.1.4+1 - 2020-10-26
- Fix: Add dart:async import to async/string.dart. Stream wasn't exported from dart:core until Dart 2.1 but Quiver supports back to Dart 2.0.
2.1.4 - 2020-10-26
- Move
stringFromByteStreamfrom the IO library to the async library. The original in IO has been deprecated and will be removed in 3.0.0. Users should update their code to import this function fromquiver/async.dart. If bothquiver/io.dartandquiver.async.dartare imported in the same file, users should hide the symbol from IO as described here: https://dart.dev/guides/language/language-tour#importing-only-part-of-a-library - Deprecate
getFullPath. Users should useFile(path).resolveSymbolicLinksSync. This will be removed in 3.0.0. - Deprecate
visitDirectory. This will be removed in 3.0.0. The source can be copied under the terms of the Apache 2.0 license. - Deprecate mirrors library. This will be removed in 3.0.0. This library was written prior to Dart 1.0 and in the interim, mirrors have been found to be problematic for production code. The primary Dart runtimes today are Flutter and the web. Flutter disables dart:mirrors altogether. On the web, the use of mirrors disables tree-shaking since in theory almost any symbol could be used reflectively; this can't be solved through static analysis -- one could imagine the situation where a user of a web app inputs the name of a method to be reflectively invoked at runtime. Users of this code can rewrite this code, or copy it into their own projects under the terms of the Apache 2.0 license.
- Fix: Eliminate a set literal inadvertently introduced in https://github.com/google/quiver-dart/pull/359. Set literals are only supported starting in Dart 2.2, but Quiver supports back to Dart 2.0.
- Switched from using part/part of to re-exporting the underlying libraries. We weren't making use of private symbols across files within lib/src. This improves readability by keeping imports with the code that's using them. It also allows for cross-imports within lib/src if necessary.
2.1.3 - 2020-02-28
- Fix: revert const constructor change to
Optional.transform,Optional.transformNullwhich causes type errors when used in combination with certain operations that trigger an implicit type check. The error in question was introduced in 2.1.2.
2.1.2+1 - 2019-11-05
- Minor linter fix: added curly brackets on flow-control structures to make Pana package scoring happier.
2.1.2 - 2019-11-05
- Deprecate
assertCheckedMode. Checked mode no longer exists in Dart 2.0 since the vast majority of what checked mode did is now done in the type system itself. This will be removed in Quiver 3.0.0. - TreeSet.isEmpty/isNotEmpty are now constant-time checks.
- Large amounts of linter-related cleanups.
2.1.1 - 2019-11-03
- Deprecate
doWhileAsync. Existing callers should migrate toFuture.doWhile()fromdart:async. This will be removed in Quiver 3.0.0. - Fix: Eliminate a crash in
LruMap.putIfAbsentwhenmaximumSizeis 1. - Add return types on any function that didn't include one.
2.1.0 - 2019-10-28
- Upgraded matcher dependency lower-bound from 0.10.0 to 0.12.5 to migrate from
isInstanceOftoisAin tests. - Style cleanups.
2.0.5 - 2019-08-06
- Added
isNotBlankto strings library.
2.0.4 - 2019-08-01
- Added
FakeAsync.pendingTimersDebugInfo.
2.0.3 - 2019-04-11
- Do not cache failed
ifAbsentcalls inMapCache.
2.0.2 - 2019-03-19
partitionis now a generic function.- New: Optional now includes an
isNotPresentgetter alongside the existingisPresentgetter.
2.0.1 - 2018-10-22
- New: Optional now includes
transformNullableto pass maybe present values through a transformer with a nullable return value.
2.0.0+1 - 2017-07-18
- Updated Dart SDK constraint to >=2.0.0-dev.61 < 3.0.0.
2.0.0 - 2018-07-18
- BREAKING CHANGE: This version requires Dart SDK 2.0.0-dev.61 or later.
1.0.0 - 2018-07-18
- BREAKING CHANGE: StreamBuffer has been changed from implementing
StreamConsumer<T>toStreamConsumer<List<T>>. Users ofStreamBuffer<List<T>>can simply change declarations toStreamBuffer<T>. In cases where the generic type is already not a list type, inputs to the list may need to be wrapped in a list.
0.29.0+1 - 2018-03-29
- BREAKING CHANGE: This version requires Dart SDK 2.0.0-dev.30 or later. Bugfixes will be backported to the 0.28.x series for Dart 1 users.
- New: BiMap now includes a real implementation of
addEntries,get entries,map,removeWhere,update, andupdateAll. - New: DelegatingIterable now includes a real implementation of
followedBy, and accepts theorElseparameter onsingleWhere. - New: DelegatingList now includes real implementations of
operator +,indexWhere, andlastIndexWhere. - New: LruMap now includes a real implementation of
addEntries,get entries,removeWhere,update, andupdateAll. - New: The map returned by
Multimap.asMap()now includes real implementations ofget entriesandremoveWhere. This class also has "real" implementations ofaddEntries,map,update, andupdateAll, which just throw anUnsupportedError, as inserts and updates are not allowed on map views. - New: The list keys of
ListMultimapnow include real implementations ofoperator +,indexWhere, andlastIndexWhere. - New: The iterable keys of
ListMultimapandSetMultimapnow include a real implementation offollowedBy, and accept theorElseparameter onsingleWhere.
0.29.0 - 2018-03-28
- BREAKING CHANGE: Deleted
createTimerandcreateTimerPeriodic, which were deprecated in 0.26.0. - BREAKING CHANGE: Deleted
reverse, which was deprecated in 0.25.0. - BREAKING CHANGE: Deleted
FutureGroup, which was deprecated in 0.25.0. - BREAKING CHANGE:
InfiniteIterable.singleWherenow throwsUnsupportedError.
0.28.2 - 2018-03-24
- Fix: Eliminate a bug where
LruMaplinkage is incorrectly preserved when items are removed.
0.28.1 - 2018-03-22
- Remove use of
Maps.mapToStringinLruMap. - Add
@visibleForTestingannotation inAvlTreeSet.
0.28.0 - 2018-01-19
- BREAKING CHANGE: The signature of
MultiMap'supdatestub has changed fromV update(K key, C update(C value), {C ifAbsent()})toC update(K key, C update(C value), {C ifAbsent()}).
0.27.0 - 2018-01-03
- BREAKING CHANGE: all classes that implement
Iterable,List,Map,Queue,Set, orTimernow implement stubs of upcoming Dart 2.0 methods. Any class that reimplements these classes also needs new method implementations. The classes with these breaking changes include:HashBiMap,DelegatingIterable,DelegatingList,DelegatingMap,DelegatingQueue,DelegatingSet,LinkedLruHashMap,TreeSet, andAvlTreeSet. - Fix: Use FIFO ordering in
FakeAsync. PR #265
0.26.2 - 2017-11-16
- Fix: re-adding the most-recently-used entry to a
LinkedLruHashMappreviously introduced a loop in the internal linked list. - Fix: when removing an entry in the middle of the
LinkedLruHashMap, the recency list was not correctly re-linked.
0.26.1 - 2017-11-16
- Fix: when removing the last item,
LinkedLruHashMapwas put into a state such that the next cache eviction could cause a null-pointer exception. Issue #385. - Fix: strong mode fix when calling
mergeon the empty set of iterables. PR #384.
0.26.0 - 2017-11-01
- BREAKING CHANGE: eliminated deprecated
flip. Replaced byreversein 0.25.0. - BREAKING CHANGE: eliminated deprecated
repeat. Deprecated in 0.25.0. Callers should useString's*operator. - BREAKING CHANGE:
collect,concat,doWhileAsync,enumerate,extent,forEachAsync,max,merge,min,reduceAsync, andzipare now type parameterized. Depending on the inferred value of each type parameter, the return type of each function may change in existing code. - BREAKING CHANGE:
Optional's==operator now takes into accountT, the type of the value. This changes, e.g.Optional<int>.absent()to no longer be equal toOptional<String>.absent(). - BREAKING CHANGE: stronger generics added in
CacheandMapCache. - Deprecated:
reversein thestringslibrary. No replacement is provided. - Deprecated:
createTimer,createTimerPeriodicin theasynclibrary. These were originally written to support FakeTimer, which is superseded by FakeAsync. - New: Added
isLeapYear,daysInMonth,clampDayOfMonthAPIs in thetimelibrary. - Multimap is now backed by a LinkedHashMap rather than HashMap.
- Multimap: added
containsto know if an association key/value exists.
0.25.0 - 2017-03-28
- BREAKING CHANGE: minimum SDK constraint increased to 1.21.0. This allows use of async-await and generic function in Quiver.
- BREAKING CHANGE: eliminated deprecated
FakeTimer. - BREAKING CHANGE:
StreamBuffer<T>now implementsStreamConsumer<T>as opposed toStreamConsumer<T|List<T>>. - Deprecated:
FutureGroup. Use the replacement inpackage:asyncwhich requires aclose()call to trigger auto-completion when the count of pending tasks drops to 0. - Deprecated:
repeatin thestringslibrary. Use the*operator on the String class. - Deprecated: in the strings library,
fliphas been renamedreverse.flipis deprecated and will be removed in the next release. - Iterables:
enumerateis now generic. - Collection: added
indexOf.
0.24.0 - 2016-10-31
- BREAKING CHANGE: eliminated deprecated
nullToEmpty,emptyToNull. - Fix: Strong mode: As of Dart SDK 1.21.0,
Set.differencetakes aSet<Object>parameter.
0.23.0 - 2016-09-21
- Strings:
nullToEmpty,emptyToNulldeprecated. Removal in 0.24.0. - BREAKING CHANGE: eliminated deprecated multimap
toMap. - BREAKING CHANGE: eliminated deprecated
pad*,trim*string functions.
0.22.0 - 2015-04-21
- BREAKING CHANGE:
streamsandasynclibraries have been merged into oneasynclibrary - BREAKING CHANGE: Pre-1.8.0 SDKs are no longer supported.
- Quiver is now strong mode compliant
- New:
Optionalnow implementsIterableand its methods are generic (using temporary syntax) - New:
isNotEmptyandisDigitinstrings.dart - New:
Multimap.fromIterable - Fix: Change
TreeSearchfromclasstoenum. - Fix:
fake_async.darttimers are now active while executing the callback
0.21.4 - 2015-05-15
- Add stats reporting for fake async tests. You can query the number of pending
microtasks and timers via
microtaskCount,periodicTimerCount,nonPeriodicTimerCount.
0.21.3+1 - 2015-05-11
- Switch from unittest to test.
0.21.3 - 2015-03-03
- Bugfix: fixed return type on some methods (e.g.
whereofIterables returned by Multimap.
0.21.2 - 2015-03-03
- Bugfix: fix drifting times in
Metronome. - Add
LruMapto quiver/collection. - Un-deprecate Glob; feedback was that package:glob was not a suitable replacement in many cases. Key reasons: dependency on dart:io and significantly poorer performance.
0.21.1 - 2015-02-05
- Add optional start param to
Glob.allMatches()to match superclass method signature. - Add optional start param to
Patternreturned bymatchesAny()to match superclass method signature. - Deprecate Glob. Use package:glob. Will be removed in 0.22.0.
0.21.0+3 - 2015-02-04
- Travis CI integration support added.
- Document that the deprecated functions
padLeft,padRight,trimLeft,trimRightwill be removed in 0.22.0.
0.21.0+2 - 2015-02-04
- Fix hanging
FakeAsyncunit test.
0.21.0+1 - 2015-02-03
- Replace
equalsTesterdependency onunittestwith finer-grained dependency onmatcher. pathis now a dev dependency.
0.21.0 - 2015-02-02
- Multimap:
toMap()is deprecated and replaced withasMap().toMap()will be removed in v0.22.0. - Cleanup method signatures that were inconsistent with the core library.
- Added
areEqualityGroupsmatcher for testingoperator==andhashCode. - CONTRIBUTING.md added.
0.20.0 - 2014-12-10
- Multimap: better
toString()on returned collections. - Multimap: Bugfix: support edits on empty value collections.
- Multimap: Added missing return statement in
fold. - Added isEmpty() in
strings. - Added max SDK constraint <2.0.0
- Minor updates to README.md.
- CHANGELOG.md added
0.19.0+1 - 2014-11-12
- Corrected version constraint suggestion in README.md.
