Skip to content

Commit

Permalink
Use self. instead of Self:: (#642)
Browse files Browse the repository at this point in the history
I was a little confused about these calls using `Self::` instead of
`self.` here. Is there a reason to use the former instead of the latter?
  • Loading branch information
braddunbar committed Dec 28, 2023
1 parent f73c6c8 commit dbbdb63
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/buf/buf_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -991,7 +991,7 @@ pub trait Buf {
///
/// This function panics if there is not enough remaining data in `self`.
fn get_f32(&mut self) -> f32 {
f32::from_bits(Self::get_u32(self))
f32::from_bits(self.get_u32())
}

/// Gets an IEEE754 single-precision (4 bytes) floating point number from
Expand All @@ -1012,7 +1012,7 @@ pub trait Buf {
///
/// This function panics if there is not enough remaining data in `self`.
fn get_f32_le(&mut self) -> f32 {
f32::from_bits(Self::get_u32_le(self))
f32::from_bits(self.get_u32_le())
}

/// Gets an IEEE754 single-precision (4 bytes) floating point number from
Expand All @@ -1036,7 +1036,7 @@ pub trait Buf {
///
/// This function panics if there is not enough remaining data in `self`.
fn get_f32_ne(&mut self) -> f32 {
f32::from_bits(Self::get_u32_ne(self))
f32::from_bits(self.get_u32_ne())
}

/// Gets an IEEE754 double-precision (8 bytes) floating point number from
Expand All @@ -1057,7 +1057,7 @@ pub trait Buf {
///
/// This function panics if there is not enough remaining data in `self`.
fn get_f64(&mut self) -> f64 {
f64::from_bits(Self::get_u64(self))
f64::from_bits(self.get_u64())
}

/// Gets an IEEE754 double-precision (8 bytes) floating point number from
Expand All @@ -1078,7 +1078,7 @@ pub trait Buf {
///
/// This function panics if there is not enough remaining data in `self`.
fn get_f64_le(&mut self) -> f64 {
f64::from_bits(Self::get_u64_le(self))
f64::from_bits(self.get_u64_le())
}

/// Gets an IEEE754 double-precision (8 bytes) floating point number from
Expand All @@ -1102,7 +1102,7 @@ pub trait Buf {
///
/// This function panics if there is not enough remaining data in `self`.
fn get_f64_ne(&mut self) -> f64 {
f64::from_bits(Self::get_u64_ne(self))
f64::from_bits(self.get_u64_ne())
}

/// Consumes `len` bytes inside self and returns new instance of `Bytes`
Expand Down

0 comments on commit dbbdb63

Please sign in to comment.