Git Product home page Git Product logo

Comments (4)

Tony-Samuels avatar Tony-Samuels commented on July 20, 2024

You want the normalize[1] or normalize_assign[2] functions, to strip the extra 0.

[1] https://docs.rs/rust_decimal/latest/rust_decimal/struct.Decimal.html#method.normalize
[2] https://docs.rs/rust_decimal/latest/rust_decimal/struct.Decimal.html#method.normalize_assign

from rust-decimal.

Zarathustra2 avatar Zarathustra2 commented on July 20, 2024

Ah awesome!

Should the docs of set_scale maybe be adjusted so that future users know about it?

from rust-decimal.

paupino avatar paupino commented on July 20, 2024

Thanks @Tony-Samuels for your reply - exactly right.

@Zarathustra2 - I think there is always an opportunity to make the documentation clearer. In this case, would it help to describe what set_scale is doing under the hood? i.e. we maintain the same mantissa, but just change where the decimal point is - hence retaining precision without rounding. e.g. in this example 3850 is having the decimal point moved to the left 3 places.

from rust-decimal.

Zarathustra2 avatar Zarathustra2 commented on July 20, 2024

@paupino Yes some clearer docs would be nice. Maybe we can also add a code example directly to the docs as example. I personally think a coding example with comments is more clear than plain text.

    let num = 3850;
    let dec = Decimal::from(num) / Decimal::ONE_THOUSAND;
    
    let mut dec_scale = Decimal::from(num);
    dec_scale.set_scale(3).unwrap();
 
    // Passes since same number
    assert_eq!(dec, dec_scale);
    assert_eq!(dec.to_string(), "3.85".to_string());
    // set_scale just moves the decimal point and keeps original mantisse. 
    // this effects the string representation but both dec & dec_scale represent
    // the same number
    assert_eq!(dec_scale.to_string(), "3.850".to_string());
    assert_eq!(dec_scale, dec);
    assert_ne!(dec_scale.to_string(), dec.to_string());
    // Use normalize to normalize the mantisse
    assert_eq!(dec_scale.normalize().to_string(), "3.85".to_string());

from rust-decimal.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.