mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-04 10:30:56 +01:00
Update explicit-accuracy-for-math-round.md
This commit is contained in:
parent
5b021f64e6
commit
06059e08af
1 changed files with 4 additions and 1 deletions
|
@ -5,9 +5,12 @@ This RFC proposes introducing a second parameter to `math.round` to allow users
|
||||||
```luau
|
```luau
|
||||||
print( math.round(3.1415, 2) ) -- Output: 3.14
|
print( math.round(3.1415, 2) ) -- Output: 3.14
|
||||||
```
|
```
|
||||||
|
In doing so, we:
|
||||||
|
- Improve user convenience by providing an implementation of the behavior for them
|
||||||
|
- Provide a marginally more performant alternative to existing implementations
|
||||||
|
|
||||||
## Motivation
|
## Motivation
|
||||||
The motivation for this proposal lies solely in improving user convenience. Albeit very simple, the concept's current implementation (demonstrated in **Design**) has two major flaws:
|
The motivation for this proposal lies mostly in improving user convenience. Albeit very simple, the concept's current implementation (demonstrated in **Design**) has two major flaws:
|
||||||
1. It's a 'one-more-than-necessary' utility users have to carry around
|
1. It's a 'one-more-than-necessary' utility users have to carry around
|
||||||
2. Though the difference is negligible in most scenarios, it's computationally slower, even in `native`
|
2. Though the difference is negligible in most scenarios, it's computationally slower, even in `native`
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue