Skip to content

Commit

Permalink
Update logarithmic.rs (#518)
Browse files Browse the repository at this point in the history
Added primitive types implementation of the `LogScalable` trait
  • Loading branch information
saona-raimundo authored Nov 7, 2023
1 parent d84fdb5 commit d540c33
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions plotters/src/coord/ranged1d/combinators/logarithmic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,14 @@ impl_log_scalable!(i, u8);
impl_log_scalable!(i, u16);
impl_log_scalable!(i, u32);
impl_log_scalable!(i, u64);
impl_log_scalable!(i, usize);

impl_log_scalable!(i, i8);
impl_log_scalable!(i, i16);
impl_log_scalable!(i, i32);
impl_log_scalable!(i, i64);
impl_log_scalable!(i, i128);
impl_log_scalable!(i, isize);

impl_log_scalable!(f, f32);
impl_log_scalable!(f, f64);
Expand Down

0 comments on commit d540c33

Please sign in to comment.