object_reference 1.0.2
object_reference: ^1.0.2 copied to clipboard
A simple object reference system in dart.
1.0.2 #
-
-
Changed calculation of
hashCode, because if the internal _ref held an as it's value, then calling , on the _ref caused an .-
OLD
int get hashCode => hashValues(_ref.hashCode, hashList(_ref), value.hashCode); -
NEW
int get hashCode => hashValues(_ref.hashCode, value.hashCode);
-
-
-
- Added
("Iterables", () { ... });for testing the new implementation of .hashCode.
- Added
1.0.0 #
-
Added const_ref.dart.
-
Added extension.dart.
-
Added mutable_ref.dart.
-
Added ref.dart.
For detailed information of the added files, read their dartdoc.
-
Added tests in object_reference_test.dart.
-
Implemented README.md.
0.0.1 #
- Initial release.