aboutsummaryrefslogtreecommitdiff
path: root/core/strconv
Commit message (Collapse)AuthorAgeFilesLines
* Minor fix to strconv.unquote_stringgingerBill2022-03-031-0/+1
|
* Make `strconv` more robustgingerBill2021-12-091-1/+3
|
* Add `i128` and `u128` parsers to `strconv`gingerBill2021-09-251-0/+223
|
* Correct `context.allocator` usagegingerBill2021-09-191-2/+3
|
* Strip even more semicolons if followed by a `}` or `)` on the same linegingerBill2021-08-312-8/+8
|
* Remove unneeded semicolons from the core librarygingerBill2021-08-314-577/+577
|
* Core library clean up: Make range expressions more consistent and replace ↵gingerBill2021-06-141-7/+7
| | | | uses of `..` with `..=`
* Implement `f16` functionalitygingerBill2021-04-011-0/+3
|
* Minimize unneeded castsgingerBill2021-03-032-4/+4
|
* Replace usage of `inline proc` with `#force_inline proc` in the core librarygingerBill2021-02-231-4/+4
|
* Improve fmt's `%#v` behaviour for nested recordsgingerBill2021-02-041-1/+1
|
* Improve number parsing proceduresTetralux2020-12-061-14/+47
| | | | | | | | - No longer returns true for partial string parsing. All characters in the string must be part of the number. i.e: parse_int("2.345") no longer returns (2, true) - it now returns (2, false) - Return (0, false) on empty strings.
* Remove usage of `do` in core librarygingerBill2020-09-233-19/+56
|
* Add `strconv.unquote_string` and `strconv.unquote_char`gingerBill2020-05-091-0/+154
|
* Fix parsing of single-digit numbersTetralux2020-05-061-21/+27
|
* Fix doc commentsTetralux2020-04-291-36/+80
|
* Return (value: T, ok: bool) insteadTetralux2020-04-291-30/+20
|
* Refactor `parse_*` procedures: arbitrary bases, and return (value, ↵Tetralux2020-04-291-33/+175
| | | | rest_of_string)
* `x if cond else y` and `x when cond else y` expressionsgingerBill2020-03-051-2/+2
|
* Remove `import "core:runtime"` in integers.odin to make -vet happygingerBill2019-12-221-1/+1
|
* Add strconv/integers.odingingerBill2019-12-211-0/+167
|
* Deprecate `using import`gingerBill2019-12-211-17/+17
|
* Add `-help` which prints information about the compiler flagsgingerBill2019-12-211-158/+0
|
* Fix #399 by removing unused parameterMikkel Hjortshoej2019-12-081-1/+1
|
* 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-012-4/+4
| | | | Allows for extra security and optimization benefits
* Move `package decimal` to be a subpackage of `package strconv`gingerBill2019-10-262-1/+265
|
* Change implicit semicolon rules for record types within procedure bodies; ↵gingerBill2019-10-061-1/+1
| | | | Update `package odin/*`
* strings.split; strings.index; eprint* over print*_err;gingerBill2019-10-061-0/+4
|
* Make procedure parameters just named values rather than copied variablesgingerBill2019-07-152-15/+20
|
* 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
|
* Fix -vet for demo.odingingerBill2019-03-301-2/+2
|
* Fix possible buffer overflows in `package strconv`gingerBill2019-03-251-9/+26
|
* Improve package strconvgingerBill2019-03-242-344/+423
|
* %e and %g support in fmt.printfgingerBill2019-03-151-15/+75
|
* Add implicit selector expressions for in/notingingerBill2019-03-061-3/+3
|
* Fix issue #280gingerBill2018-11-171-4/+4
|
* Minor sanity features for `bit_set`gingerBill2018-08-141-7/+8
|
* Add `bit_set` typegingerBill2018-08-141-5/+5
|
* Reduce number of range and slice operators #239gingerBill2018-08-011-28/+28
| | | | Replace .. and ... with : and ..
* Parse directories to be packagesgingerBill2018-05-211-0/+505