Skip to content

Commit

Permalink
[mathutil] Add method 'FromPerc'
Browse files Browse the repository at this point in the history
  • Loading branch information
andyone committed Sep 16, 2024
1 parent bab2958 commit 56954b6
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

### [13.5.1](https://kaos.sh/ek/13.5.1)

- `[mathutil]` Added method `FromPerc`
- `[mathutil]` Code refactoring

### [13.5.0](https://kaos.sh/ek/13.5.0)
Expand Down
6 changes: 6 additions & 0 deletions mathutil/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,12 @@ func ExamplePerc() {
// 30%
}

func ExampleFromPerc() {
fmt.Printf("%g\n", FromPerc(15.0, 2860))
// Output:
// 429
}

func ExampleRound() {
fmt.Println(Round(3.14159, 2))
// Output:
Expand Down
9 changes: 9 additions & 0 deletions mathutil/mathutil.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,15 @@ func Perc[N Numeric](current, total N) float64 {
return (float64(current) / float64(total)) * 100.0
}

// FromPerc calculates value from percentage
func FromPerc(perc float64, total float64) float64 {
if perc <= 0 || total == 0 {
return 0
}

return (total / 100.0) * perc
}

// Round returns rounded value
func Round(v float64, p int) float64 {
pow := math.Pow(10, float64(p))
Expand Down
8 changes: 8 additions & 0 deletions mathutil/mathutil_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,11 @@ func (s *MathUtilSuite) TestPerc(c *C) {
c.Assert(Perc(100, 100), Equals, 100.0)
c.Assert(Perc(200, 100), Equals, 200.0)
}

func (s *MathUtilSuite) TestFromPerc(c *C) {
c.Assert(FromPerc(0, 0), Equals, 0.0)
c.Assert(FromPerc(100, 0), Equals, 0.0)
c.Assert(FromPerc(-1, 1000), Equals, 0.0)
c.Assert(FromPerc(250, 100), Equals, 250.0)
c.Assert(FromPerc(25.55, -100), Equals, -25.55)
}

0 comments on commit 56954b6

Please sign in to comment.