dartbag 0.6.0 dartbag: ^0.6.0 copied to clipboard
A grab-bag of miscellaneous, lightweight utility code for Dart.
dartbag #
A grab-bag of miscellaneous, lightweight utility code for Dart. Functionality includes (but is not limited to):
byte_data #
List<int>.asUint8List
converts aList<int>
to aUint8List
without copying, if possible.
collection #
-
List.reverse
reverses aList
in place. -
List.rotateLeft
rotates aList
in place. -
List.sortWithKey
sorts aList
by computing and caching sort keys, which can be significantly faster if comparisons are expensive. -
List.sortWithAsyncKey
is a version ofsortWithKey
that allows the sort key to be computed asynchronously. -
compareIterables
compares twoIterable
s in a manner similar to string comparison. -
LinkedHashMap.sort
. -
mergeMaps
s combines anIterable
ofMap
s into a singleMap
.
debug #
-
assertsEnabled
returns whetherassert
is enabled. -
currentDartPackagePath
returns the path to the current Dart library for Dart VM builds. -
staticType
returns the static type of an object.
matcher #
toStringMatches
verifies that a tested value has a matching type and string representation.
misc #
-
chainIf
allows conditional method chaining based on a condition. -
tryAs
casts an object and returnsnull
on failure instead of throwing aTypeError
. -
OutputParameter
allows specifying output parameters from functions as a crude mechanism to return multiple values. -
int.padDigits
converts anint
to aString
, left-padded with zeroes to have a minimum number of digits. -
int.multipleOf
rounds a non-negative integer to the nearest multiple of another number. -
Uri.updateQueryParameters
adds or replaces query parameters in aUri
. -
Rectangle.center
returns the center of aRectangle
. -
bool.implies
returns whether onebool
logically implies another. -
Future.cast
casts aFuture<T>
to aFuture<R>
. -
hoursOnly
,minutesOnly
,secondsOnly
,millisecondsOnly
, andmicrosecondsOnly
retrieve specific components of aDuration
.
parse #
-
tryParseBool
parses abool
from aString?
. -
tryParseInt
andtryParseDouble
are wrappers aroundint.tryParse
anddouble.tryParse
that acceptnull
arguments. -
List<Enum>.tryParse
parses anEnum
value from aString?
. -
tryParseDuration
parses aDuration
from aString?
.
random #
-
randMaxInt
portably returns the maximum value allowed byRandom.nextInt
. -
Random.nextIntFrom
returns a random integer in a specified range. -
lazyShuffler
shuffles aList
lazily. -
RepeatableRandom
wraps an existing pseudo-random number generator to allow a random sequence to be easily restarted and to allow the seed to be retrieved.
readable_numbers #
-
readableDuration
returns aDuration
as a human-readable string. -
readableNumber
returns a number as a human-readable string with SI prefixes and units.
timer #
ExpiringPeriodicTimer
is a periodicTimer
that automatically stops after a time limit.
tty #
-
getTerminalSize
attempts to get the number of columns and lines of a terminal. -
wordWrap
wraps a string to a maximum line length. -
ArgResults.parseOptionValue
reduces some boilerplate when parsing option values frompackage:args
.