aboutsummaryrefslogtreecommitdiff
path: root/src/lib/strings.go
AgeCommit message (Collapse)Author
2009-05-05directory-per-package step 1: move files from lib/X.go to lib/X/X.goRob Pike
no substantive changes except: - new Makefiles, all auto-generated - go/src/lib/Makefile has been extensively edited R=rsc OCL=28310 CL=28310
2009-05-04string slicing is efficient so remove base and bounds arguments from ↵Rob Pike
RuneCountInString R=rsc DELTA=6 (1 added, 0 deleted, 5 changed) OCL=28242 CL=28256
2009-04-13lib miscRuss Cox
* exec.LookPath * flag.Args * os.Remove * strings.HasPrefix * strings.HasSuffix * syscall.Rmdir TBR=r DELTA=100 (100 added, 0 deleted, 0 changed) OCL=27373 CL=27392
2009-04-07add error case in doc for Index. simplify code slightly.Rob Pike
R=rsc DELTA=5 (1 added, 0 deleted, 4 changed) OCL=27148 CL=27151
2009-03-05document stringsRob Pike
R=rsc DELTA=9 (4 added, 0 deleted, 5 changed) OCL=25793 CL=25795
2009-01-20delete exportRuss Cox
TBR=r OCL=23121 CL=23127
2009-01-16casify miscRuss Cox
R=r DELTA=247 (20 added, 50 deleted, 177 changed) OCL=22951 CL=22955
2009-01-06new new & makeRuss Cox
R=r OCL=22166 CL=22166
2008-12-18convert *[] to [].Russ Cox
R=r OCL=21563 CL=21571
2008-12-04strings.utflen -> utf8.RuneCount, RuneCountInStringRuss Cox
R=r DELTA=94 (52 added, 33 deleted, 9 changed) OCL=20547 CL=20552
2008-11-17correctly rounded floating-point conversionsRuss Cox
in new package strconv. move atoi etc to strconv too. update fmt, etc to use strconv. R=r DELTA=2232 (1691 added, 424 deleted, 117 changed) OCL=19286 CL=19380
2008-11-06simpleminded ascii to floating point conversionRob Pike
R=rsc DELTA=111 (107 added, 0 deleted, 4 changed) OCL=18720 CL=18725
2008-11-03ascii to unsigned integerRob Pike
R=rsc DELTA=60 (35 added, 17 deleted, 8 changed) OCL=18339 CL=18343
2008-10-29fix strings bug from CL 18024Russ Cox
R=r OCL=18026 CL=18026
2008-10-29adapt to new compiler typesRuss Cox
R=r OCL=18024 CL=18024
2008-10-29the end of life as we know itKen Thompson
int is new type R=r OCL=18023 CL=18023
2008-10-20add primitive ftoa, dtoa to strings library.Rob Pike
R=rsc DELTA=72 (69 added, 0 deleted, 3 changed) OCL=17478 CL=17480
2008-10-17fix typo causing infinite recursionRob Pike
R=rsc OCL=17398 CL=17398
2008-10-17add atol and ltoa. probably want unsigned at some point too.Rob Pike
R=rsc DELTA=14 (10 added, 0 deleted, 4 changed) OCL=17387 CL=17390
2008-09-29Use unsigned int in itoa to avoid relying on the behaviour ofIan Lance Taylor
signed integer overflow when negating the most negative integer. R=rsc DELTA=11 (0 added, 7 deleted, 4 changed) OCL=16105 CL=16120
2008-09-25To get an empty string, return an empty string, not 0.Ian Lance Taylor
R=rsc DELTA=1 (0 added, 0 deleted, 1 changed) OCL=15858 CL=15860
2008-09-12rudimentary string utilities.Russ Cox
R=r DELTA=314 (306 added, 8 deleted, 0 changed) OCL=15074 CL=15263