tooly 0.4.1 tooly: ^0.4.1 copied to clipboard
Tooly is a package based in Lodash for Dart that contain utilities for working with lists, maps, sets and objects.
Tooly #
Tooly is a package based in Lodash for Dart that contain utilities for working with lists, maps, sets and objects.
Method list #
Chunk #
Create an list of elements split into groups the length of initial list size.
Tooly.chunk([1, 2, 3, 4, 5], 2);
// [[1, 2], [3, 4], 5]
Compact #
Create a list without null
, false
, 0
and ''
from another list.
Tooly.compact([0, 77, '', 55, false]);
// [77, 55]
Concat #
Create a list that contain the initial list and additional list.
Tooly.concat([1, 2, 3], [4, 5, 6]);
// [1, 2, 3, 4, 5, 6]
Difference #
Create a list of values that not include in the second list.
Tooly.difference([1, 2, 3], [3, 4, 5]);
// [1, 2]
Uniq #
Create a list no duplicate elements from another list.
Tooly.uniq([1, 1, 1, 5, 5, 8]);
// [1, 5, 8]
listToString #
Create a string from a list.
Tooly.listToString(['first', 'second', 'third']);
// first, second, third
Flatten #
Flattens list a single level deep.
Tooly.flatten([1, 2, [3, 4], ['a', 'b']]);
// [1, 2, 3, 4, a, b]
Much more under construction...