about summary refs log tree commit diff
path: root/src/lib
AgeCommit message (Expand)AuthorLines
2010-10-18Disable use of parametric tail call in map.rs, they don't presently work.Graydon Hoare-1/+3
2010-10-18Make list.find return an option of different type than the list element.Graydon Hoare-7/+7
2010-10-18Flesh out the std.list module a touch.Graydon Hoare-0/+49
2010-10-15Encode and decode tag types in dwarf properly. Add list module to std. Shift ...Graydon Hoare-1/+17
2010-09-29Patchwork of attempted fixes to effect system and gc system; eventually give ...Graydon Hoare-15/+15
2010-09-22Add 'items' iter to hashmap.Graydon Hoare-0/+12
2010-09-22Reformat standard library; no code changes.Graydon Hoare-708/+852
2010-09-22Add some basic string functions: index, rindes, find, substr, split, concat, ...Graydon Hoare-0/+119
2010-09-21Tighten pattern parsing on 0-ary constructors.Graydon Hoare-2/+2
2010-09-20Bind pattern slots with ?, drop parens from 0-ary tag constructors, translate...Graydon Hoare-24/+24
2010-09-09Switch tags to purely nominal, removing TY_iso and TY_idx. Seems to mostly wo...Graydon Hoare-3/+11
2010-09-06Add a little pointer-cast helper to dbg.Roy Frostig-0/+5
2010-09-03Test multi-ref'ed vec growth more seriously than before.Roy Frostig-0/+5
2010-08-26Test the hashmap more, exercising hash collision, element removal, and a forc...Roy Frostig-6/+11
2010-08-26Make vreg constrs per-quad, regfence on nontrivial constrs, back out workarou...Graydon Hoare-3/+1
2010-08-26Workaround issue #152 in _uint.next_power_of_twoRoy Frostig-1/+3
2010-08-25Actually switch to using the bigger hashmap once a it finishes growing and re...Roy Frostig-2/+4
2010-08-25Fix edge case in uint->string conversion.Graydon Hoare-1/+1
2010-08-24Comment on env var required for std.dbg to do any logging.Roy Frostig-0/+3
2010-08-24Add support in dbg.debug_obj for printing the obj body.Roy Frostig-3/+12
2010-08-24Add std.dbg module for inspecting rust values in memory.Roy Frostig-0/+45
2010-08-24Fix mod-bug in std.map, work around bug in closure typaram capture, enable in...Graydon Hoare-5/+4
2010-08-24Make _str.eq suitable for map.hashmap; add _str.hash that does simple djb-hash.Graydon Hoare-1/+12
2010-08-20Redo _uint.to_str to work with chars and only one tmp str, built left-to-right.Graydon Hoare-19/+37
2010-08-20Test the buffered reader and writer in _io.Roy Frostig-4/+35
2010-08-20Add ungetc and re-indent _io.rs.Graydon Hoare-95/+102
2010-08-20Add _uint module to std, move some code around.Graydon Hoare-60/+75
2010-08-19Make _io.buf_reader read more than 0 bytes at a time.Roy Frostig-7/+24
2010-08-18Add stdio_reader to io, just use FILE* values for now. We have things to do.Graydon Hoare-1/+46
2010-08-12Address FIXME in _vec waiting on closed issue #108.Roy Frostig-5/+4
2010-08-12Add vec debugging utility to _vec module.Roy Frostig-0/+5
2010-08-11Added support for task sleeping in the scheduler.Michael Bebenita-0/+14
2010-08-11Add native vec[u8] to str converter. Put in workaround for leak in str to ve...Roy Frostig-4/+31
2010-08-11Fix reverse-indexing bug in _vec.init_fn.Roy Frostig-3/+3
2010-08-10Fix a deque size bookkeeping bug.Roy Frostig-1/+3
2010-08-06Implement _str.len() to return the number of bytes, rename it to byte_len(),Jeffrey Yasskin-5/+10
2010-08-06Add an int->str conversion function.Jeffrey Yasskin-12/+12
2010-08-06Redo yesterday's buf_writer-wrapper in a less silly and convoluted way. Add ...Roy Frostig-43/+59
2010-08-05Mop up workarounds in stdlib no longer required as issue #93 is closed.Graydon Hoare-24/+11
2010-08-04Add to std._io some formatter/type-specific-writer mechanism. Make a few typ...Roy Frostig-0/+70
2010-08-04Add per-platform file-open flags to std.os. Open buffers as desired in std._io.Roy Frostig-6/+73
2010-08-04Add a buffered writer to stdlib _io module.Roy Frostig-5/+48
2010-08-04Address _io.new_buf FIXME now that issue #93 is closed.Roy Frostig-9/+1
2010-08-03Have hashmap's insert method overwrite on existing-key insertion and return t...Roy Frostig-4/+8
2010-08-03More stdlib hashmap work. Add a simple test and XFAIL it due to a valgrind-s...Roy Frostig-21/+29
2010-08-03Address _vec.map allocation FIXME. Add test.Roy Frostig-6/+2
2010-08-03Address _vec.grow FIXME, as issue #89 has been closed.Roy Frostig-4/+1
2010-08-03Pass parametric types by-alias in various stdlib spots.Roy Frostig-5/+5
2010-08-03More stdlib hashmap bits (plus some drive-by extras).Roy Frostig-34/+89
2010-07-28Test the deque more and fix uncovered off-by-one bug.Roy Frostig-8/+6