Closed alexandruag closed 4 years ago
Some asserts (such as assert!(offset < count); in read_from and write_to) get triggered when the respective methods are called with count == 0. It's an edge case, but still valid and we should not treat this as an exceptional situation.
assert!(offset < count);
read_from
write_to
count == 0
PRs have been merged and releases v0.1.2 and v0.2.2 have been published.
v0.1.2
v0.2.2
Some asserts (such as
assert!(offset < count);
inread_from
andwrite_to
) get triggered when the respective methods are called withcount == 0
. It's an edge case, but still valid and we should not treat this as an exceptional situation.