aboutsummaryrefslogtreecommitdiff
path: root/core/strconv/generic_float.odin
Commit message (Collapse)AuthorAgeFilesLines
* Fix generic_float.odinJeroen van Rijn2023-12-211-2/+0
|
* Fix `%g` in `fmt`, and make `%v` default to `%g` for floatsgingerBill2023-12-211-2/+7
|
* initialJon Lipstate2023-03-281-1/+53
|
* Fix decimal_to_float_bits for floats >= 1Hyp-X2023-01-281-1/+1
|
* Fix typo in `decimal_to_float_bits`gingerBill2023-01-231-4/+4
|
* `strconv.parse_f64` - accurately parse floatsgingerBill2022-11-211-0/+86
|
* Remove unneeded semicolons from the core librarygingerBill2021-08-311-118/+118
|
* Implement `f16` functionalitygingerBill2021-04-011-0/+3
|
* Remove usage of `do` in core librarygingerBill2020-09-231-1/+3
|
* `x if cond else y` and `x when cond else y` expressionsgingerBill2020-03-051-2/+2
|
* Deprecate `using import`gingerBill2019-12-211-17/+17
|
* Add `-help` which prints information about the compiler flagsgingerBill2019-12-211-158/+0
|
* Fix issue with `-thread-count` flag with <= 0 countgingerBill2019-12-031-1/+1
|
* Make the `string` type elements "immutable", akin to `char const *` in CgingerBill2019-12-011-1/+1
| | | | Allows for extra security and optimization benefits
* Move `package decimal` to be a subpackage of `package strconv`gingerBill2019-10-261-1/+1
|
* Change implicit semicolon rules for record types within procedure bodies; ↵gingerBill2019-10-061-1/+1
| | | | Update `package odin/*`
* Make procedure parameters just named values rather than copied variablesgingerBill2019-07-151-12/+14
|
* Support 128-bit integers `i128` `u128`gingerBill2019-05-281-0/+76
|
* Make core library use `a..<b` rather than doing `a..b-1`gingerBill2019-05-281-2/+2
|
* Improve package strconvgingerBill2019-03-241-0/+361