aboutsummaryrefslogtreecommitdiff
path: root/core/strings.odin
Commit message (Expand)AuthorAgeFilesLines
* Fix `copy`Ginger Bill2017-07-181-0/+1
* Remove `atomic`, `++`, and `--`Ginger Bill2017-07-181-1/+1
* Change precedence order for types e.g. ^T(x) == ^(T(x))Ginger Bill2017-07-131-2/+2
* `..` half closed range; `...` open range; `...` variadic syntaxGinger Bill2017-07-071-1/+1
* Add `free` for maps (a previous oversight)Ginger Bill2017-07-051-1/+3
* Fix `do` on `for` loopsGinger Bill2017-07-011-3/+1
* :: style procedure declarations; remove old parsing codeGinger Bill2017-06-281-3/+3
* Disable `var` and `const` declarationsGinger Bill2017-06-281-3/+3
* Check for empty generic declaration listGinger Bill2017-06-121-0/+7
* Prefix `proc` syntaxGinger Bill2017-06-121-2/+2
* Remove := with var and :: with constGinger Bill2017-06-121-4/+4
* Make `rune` a basic type and not an alias; Remove `byte`Ginger Bill2017-06-061-4/+4
* Syntax change: cast(T)x => T(x); union_cast(T)x => x.(T); transmute(T)x => tr...Ginger Bill2017-04-301-3/+3
* len, cap, make; remove .count, .capacity, new_sliceGinger Bill2017-04-021-8/+7
* Allow pointers to `append`; Fix strconv stuff; `new_slice` allows for capacityGinger Bill2017-03-021-2/+2
* ++ -- statements; add strconv.odin (and replace some of the fmt procs); Fix ~...Ginger Bill2017-02-261-1/+1
* Add core/strings.odinGinger Bill2017-02-241-0/+15