Merge branch 'v0.4.x' into uplift-0.4-commits

This commit is contained in:
Sean McArthur
2019-06-06 14:08:29 -07:00
15 changed files with 369 additions and 35 deletions
+2 -1
View File
@@ -91,7 +91,8 @@ pub trait Buf {
fn remaining(&self) -> usize;
/// Returns a slice starting at the current position and of length between 0
/// and `Buf::remaining()`.
/// and `Buf::remaining()`. Note that this *can* return shorter slice (this allows
/// non-continuous internal representation).
///
/// This is a lower level function. Most operations are done with other
/// functions.