about summary refs log tree commit diff
path: root/src/lib
AgeCommit message (Expand)AuthorLines
2011-11-15Fixed typo in constant value #1165Stefan Plantikow-1/+1
2011-11-15Replaced constant functions with actual constants in std and updated testsStefan Plantikow-116/+97
2011-11-15Fix some indentation and idioms in rope.rsMarijn Haverbeke-25/+17
2011-11-14stdlib: Run cleanups on data that fails to sendBrian Anderson-2/+8
2011-11-13rt: Perform task notification before killing the parent taskBrian Anderson-1/+1
2011-11-13Drop enqueued elements when a port is destructed. Closes #1155Brian Anderson-2/+9
2011-11-11rt: Remove drop_port. UnusedBrian Anderson-2/+0
2011-11-10str: add escape()Elly Jones-2/+32
2011-11-10Cleanup unused importsHaitao Li-7/+0
2011-11-10stdlib: Remove sio and aio. Bitrotted.Brian Anderson-268/+1
2011-11-10stdlib: Update the example in std::commBrian Anderson-3/+2
2011-11-10Add float support to #fmt. Fix #1014.Josh Matthews-4/+55
2011-11-09Rename "c-stack-stdcall" ABI to "stdcall"Brian Anderson-1/+1
2011-11-09Rename "c-stack-cdecl" ABI to "cdecl"Brian Anderson-24/+24
2011-11-09Convert last use of "x86stdcall" ABI to "c-stack-stdcall"Brian Anderson-1/+1
2011-11-08Clean up std::taskBrian Anderson-12/+12
2011-11-08Make task_sleep an intrinsic.Brian Anderson-1/+1
2011-11-08rt: Remove task_yield builtinBrian Anderson-2/+1
2011-11-08start_task can run on the C stackBrian Anderson-2/+4
2011-11-08Remove all uses of native cdecl except for those that yieldBrian Anderson-4/+28
2011-11-07Fix long linesBrian Anderson-1/+2
2011-11-07json: betterify for brsonElly Jones-87/+51
2011-11-07stdlib: add json.Elly Jones-0/+294
2011-11-07Remove native "llvm" ABIBrian Anderson-15/+15
2011-11-06[Stdlib] rope.rs: improved doc, code readabilityDavid Rajchenbach-Teller-82/+157
2011-11-06[Stdlib] rope.rs: concat, now attempts to preserve balanceDavid Rajchenbach-Teller-6/+28
2011-11-06[Stdlib doc] char.rs: documented to_digit, cmpDavid Rajchenbach-Teller-0/+25
2011-11-06[stdlib optim] rope::node improved balancing strategyDavid Rajchenbach-Teller-8/+59
2011-11-05[Docfix] lib/str.rs: Applied review suggestions, took the opportunity to impr...David Rajchenbach-Teller-7/+62
2011-11-05[Docfixes + feature] lib/uint.rs: Applied review suggesions, took the opportu...David Rajchenbach-Teller-9/+61
2011-11-05[Docfix + Renaming] lib/rope.rs: Applied review suggestions, mostly docfixes.David Rajchenbach-Teller-2/+68
2011-11-05stdlib: Added a small rope libraryDavid Rajchenbach-Teller-0/+1133
2011-11-05char.rs: Added a function cmpDavid Rajchenbach-Teller-0/+8
2011-11-05uint.rs: added functions div_ceil, div_floor, div_roundDavid Rajchenbach-Teller-0/+23
2011-11-05str.rs: Added functions loop_chars, loop_chars_sub, char_len_range, byte_len_...David Rajchenbach-Teller-8/+63
2011-11-04vec: take [mutable? T] instead of [T]Elly Jones-2/+2
2011-11-03Disallow writing to function arguments againMarijn Haverbeke-22/+28
2011-11-02Add vec::permute to the standard library (#1013)Matt Brubeck-0/+25
2011-11-02Rename car/cdr to head/tail in std::listMarijn Haverbeke-4/+4
2011-11-02Make ptr::addr_of return an immutable vec, add mut_addr_ofMarijn Haverbeke-6/+16
2011-11-01Organize std.rc and make exports explicitBrian Anderson-51/+77
2011-11-01Add should_fail annotation for unit testsMatt Brubeck-14/+23
2011-10-31Add a char::to_digit functionMatt Brubeck-10/+11
2011-10-31Correct handling of non-numeric chars in parse_bufMatt Brubeck-2/+18
2011-10-31Rename std::str::chars to iter_charsMarijn Haverbeke-3/+3
2011-10-31Add a way to iterate over a str's chars to std::strMarijn Haverbeke-1/+16
2011-10-30Fix int::parse_buf for negative numbers (#1102)Matt Brubeck-2/+4
2011-10-30Make float::from_str ignore whitespace (#1089)Matt Brubeck-3/+21
2011-10-29stdlib: Fix type in docs for result::chanBrian Anderson-1/+1
2011-10-29stdlib: Add vec::concat to concatenate a vector of vectorsBrian Anderson-0/+13