summary refs log tree commit diff
path: root/src/libstd/base64.rs
AgeCommit message (Expand)AuthorLines
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-14/+14
2013-03-27base64: add docstringDaniel Micay-0/+2
2013-03-26librustc: Remove obsolete syntaxPatrick Walton-1/+1
2013-03-26librustc: Modify all code to use new lifetime binder syntaxPatrick Walton-2/+2
2013-03-26Isolated bug, static vector seems to behave differently than fixed sized oneMarvin Löbel-1/+1
2013-03-26Switched over a bunch of splitting funktions to non-allocating iteratorsMarvin Löbel-13/+17
2013-03-22libstd: Remove all uses of `pure` from libstd. rs=depurePatrick Walton-6/+6
2013-03-18librustc: Convert all uses of old lifetime notation to new lifetime notation....Patrick Walton-2/+2
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-14/+14
2013-03-07De-implicit-self libstdBen Striegel-8/+8
2013-03-06Add manual &self/ and &static/ and /&self declarations thatNiko Matsakis-2/+2
2013-03-04Remove unused imports throughout src/Alex Crichton-1/+0
2013-02-14librustc: Replace `impl Type : Trait` with `impl Trait for Type`. rs=implflip...Patrick Walton-4/+4
2013-02-13Remove die!, raplace invocations with fail! Issue #4524 pt 3Nick Desaulniers-4/+4
2013-02-07Make ~fn non-copyable, make &fn copyable, split barefn/closure types,Niko Matsakis-2/+0
2013-01-31Replace most invocations of fail keyword with die! macroNick Desaulniers-4/+4
2013-01-29libstd: De-export libstd. rs=deexportPatrick Walton-4/+2
2012-12-27libstd: Fix a bunch of resolve errors in tests. rs=firePatrick Walton-0/+3
2012-12-27librustc: Terminate name searches at the nearest module scope for paths that ...Patrick Walton-1/+5
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-11-18Fixing warnings for long and blank linesJesse Jones-10/+11
2012-11-18Made more stuff pure.Jesse Jones-86/+88
2012-09-28std: Eliminate deprecated patternsBrian Anderson-1/+0
2012-09-27De-export std::{base64,cmp,par}. Part of #3583.Graydon Hoare-2/+2
2012-09-26Demode vec::push (and convert to method)Niko Matsakis-6/+6
2012-09-21De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachiNiko Matsakis-2/+1
2012-09-21libcore: De-mode strPatrick Walton-13/+13
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under #[l...Graydon Hoare-0/+1
2012-09-04libstd: "import" -> "use"Patrick Walton-1/+1
2012-09-03libstd: Make ToBase64 take slicesPatrick Walton-2/+2
2012-09-02std: warn(non_camel_case_types) everywhere. still some exceptionsBrian Anderson-1/+0
2012-09-01Confirm demode of base64.rsKevin Cantu-0/+2
2012-08-28CamelCasify lots of stdBen Striegel-6/+7
2012-08-23Rename str::bytes to str::to_bytesTim Chevalier-9/+9
2012-08-15Expunge match checksTim Chevalier-4/+7
2012-08-14Convert more core types to camel caseBrian Anderson-1/+1
2012-08-08Convert impls to new syntaxBrian Anderson-5/+5
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-2/+2
2012-08-05Switch alts to use arrowsBrian Anderson-8/+6
2012-08-01Convert ret to returnBrian Anderson-2/+2
2012-07-31Change remaining "iface" occurrences to "trait"; deprecate "iface"Lindsey Kuper-2/+2
2012-07-14Move the world over to using the new style string literals and types. Closes ...Michael Sullivan-24/+24
2012-07-03Add a basic base64 moduleErick Tryzelaar-0/+158