You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+23-3
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,29 @@
1
1
# CHANGELOG
2
+
## [2.5.0]
3
+
- Added `castTo<R>()` to the List and Set extensions and `toListCasted<R>()` & `toSetCasted<R>()` to the Iterable extension.
4
+
- Enhanced numeric extensions with additional date-related helpers:
5
+
- Added helpers to check if the number matches the current year, month, day of the month, or day of the week: `isCurrentYear`, `isCurrentMonth`, `isCurrentDay`, and `isCurrentDayOfWeek`.
6
+
-`isBetweenMonths`: Checks if a number (representing a month) falls within a specified range, handling year boundaries gracefully.
7
+
- Added `isInThisMonth` in the date extension, it checks if a month of this date matches the month of now.
8
+
- Updated some docs.
9
+
10
+
```dart
11
+
void main() {
12
+
final list = [1, 2, '3', '3.1', 22.3];
13
+
14
+
// Parsing a dynamic numeric list to num, int, and double.
**`totalBy` Getter:** The `totalBy` getter as an extension on any `Iterable`. It allows you to calculate the total of a specific numeric property within the objects of the iterable by providing a selector function.
5
-
**`total` Getter:** Now, any `Iterable` containing numeric types (`int?`, `double?`, `num?`) has access to a `total` getter. This getter computes the sum of all numeric elements within the iterable, with null values being treated as zeros
6
-
**`nodesWhere` in `DoublyLinkedList`** The `DoublyLinkedList` now includes a `nodesWhere` method, which returns all nodes that satisfy a given condition specified by the test function `bool Function(Node<E>)`.
22
+
**`total` on `Iterable<num>`:** This getter computes the sum of all numeric elements within the iterable, with null values being treated as zeros
23
+
24
+
**`totalBy` on `Iterable<E>`:** Allows you to calculate the total of a specific numeric property within the objects of the iterable by providing a selector function.
25
+
26
+
**`nodesWhere` on `DoublyLinkedList`** The `DoublyLinkedList` now includes a `nodesWhere` method, which returns all nodes that satisfy a given condition specified by the test function `bool Function(Node<E>)`.
7
27
8
28
```dart
9
29
num totalPrice = productList.totalBy((product) => product?.price);
The `dart_helper_utils` package provides a collection of Dart utilities, tools for converting dynamic objects to various types, and extending core Dart classes with extension.
5
+
The `dart_helper_utils` package provides a collection of Dart utilities, tools for converting dynamic objects to various types, and extending core Dart classes with an extension.
6
6
7
7
**Note:** This package is tailored for Dart projects. For Flutter projects, use [`flutter_helper_utils`](https://pub.dev/packages/flutter_helper_utils), which includes all `dart_helper_utils` features plus additional utilities and extension for Flutter, such as `Widget`, `Color`, and `BuildContext` extension.
8
8
@@ -58,16 +58,16 @@ The `DoublyLinkedList` class offers a way to manage ordered collections of data
58
58
59
59
**Key Advantages:**
60
60
***Efficient Insertion/Deletion:** Adding or removing elements at the beginning, middle, or end of the list takes constant time (O(1)).
61
-
***Bidirectional Traversal:**Easily navigate through the list in either direction using the `next` and `prev` references on each node.
61
+
***Bidirectional Traversal:** Easily navigate through the list in either direction using the `next` and `prev` references on each node.
62
62
***Memory Flexibility:** The list dynamically grows or shrinks as needed, making it memory-efficient for managing collections of varying sizes.
63
63
64
64
**Core Features:**
65
-
***List-Like Interface:**You can use `DoublyLinkedList` just like a standard Dart `List`, with familiar methods like `add`, `insert`, `remove`, `clear`, etc.
65
+
***List-Like Interface:** You can use `DoublyLinkedList` just like a standard Dart `List`, with familiar methods like `add`, `insert`, `remove`, `clear`, etc.
66
66
***Node Iteration:** The `nodes` property provides a convenient way to iterate over the individual nodes of the list, giving you access to `data`, `prev`, and `next` fields.
67
67
***Factory Constructors:** Easily create lists with specific characteristics:
68
68
-`filled(length, fill)`: Creates a list of a given length filled with a specified value.
69
69
-`generate(length, generator)`: Creates a list by applying a function to generate elements.
70
-
-`from(Iterable)`: Creates a list from an existing iterable.
70
+
-`from(Iterable)`: Creates a list from existing iterable.
* **Error Handling:** Consider adding more robust error handling, especially in the parsing extensions, to provide informative messages to the user or log errors appropriately.
594
+
* **Documentation:** While the code is generally well-organized, adding more detailed comments or docstrings, especially for complex functions, would improve its understandability and maintainability.
595
+
* **Naming Conventions:** Some function names (e.g., `addOrRemoveYears`) could be more concise or descriptive.
596
+
* **Testing:** Writing unit tests to cover various scenarios and edge cases would ensure the correctness and reliability of the code.
0 commit comments