aboutsummaryrefslogtreecommitdiff
path: root/src/lib/strings.go
AgeCommit message (Expand)Author
2009-05-05directory-per-package step 1: move files from lib/X.go to lib/X/X.goRob Pike
2009-05-04string slicing is efficient so remove base and bounds arguments from RuneCoun...Rob Pike
2009-04-13lib miscRuss Cox
2009-04-07add error case in doc for Index. simplify code slightly.Rob Pike
2009-03-05document stringsRob Pike
2009-01-20delete exportRuss Cox
2009-01-16casify miscRuss Cox
2009-01-06new new & makeRuss Cox
2008-12-18convert *[] to [].Russ Cox
2008-12-04strings.utflen -> utf8.RuneCount, RuneCountInStringRuss Cox
2008-11-17correctly rounded floating-point conversionsRuss Cox
2008-11-06simpleminded ascii to floating point conversionRob Pike
2008-11-03ascii to unsigned integerRob Pike
2008-10-29fix strings bug from CL 18024Russ Cox
2008-10-29adapt to new compiler typesRuss Cox
2008-10-29the end of life as we know itKen Thompson
2008-10-20add primitive ftoa, dtoa to strings library.Rob Pike
2008-10-17fix typo causing infinite recursionRob Pike
2008-10-17add atol and ltoa. probably want unsigned at some point too.Rob Pike
2008-09-29Use unsigned int in itoa to avoid relying on the behaviour ofIan Lance Taylor
2008-09-25To get an empty string, return an empty string, not 0.Ian Lance Taylor
2008-09-12rudimentary string utilities.Russ Cox