diff options
| author | Eric Holk <eric.holk@gmail.com> | 2012-05-16 09:47:00 -0700 |
|---|---|---|
| committer | Eric Holk <eric.holk@gmail.com> | 2012-05-22 15:31:38 -0700 |
| commit | a785f3fc95752dc2cfced5e7ccef710e189acb9c (patch) | |
| tree | d63ccde882a9ebf3270e91fb1b240bc7344025eb /src/libstd/std.rc | |
| parent | d485f23a1a1879b6c066ae56a1ccfe1f092785fd (diff) | |
| download | rust-a785f3fc95752dc2cfced5e7ccef710e189acb9c.tar.gz rust-a785f3fc95752dc2cfced5e7ccef710e189acb9c.zip | |
Adding a module with parallel vector operations.
This should go in libstd, but currently resolve bugs make this not work.
Diffstat (limited to 'src/libstd/std.rc')
| -rw-r--r-- | src/libstd/std.rc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstd/std.rc b/src/libstd/std.rc index 40a03ae25c2..f25ceb87c3c 100644 --- a/src/libstd/std.rc +++ b/src/libstd/std.rc @@ -19,6 +19,7 @@ export bitv, deque, fun_treemap, list, map, smallintmap, sort, treemap; export rope, arena; export ebml, dbg, getopts, json, rand, sha1, term, time, prettyprint; export test, tempfile, serialization; +export par; // General io and system-services modules @@ -58,6 +59,7 @@ mod getopts; mod json; mod sha1; mod md4; +mod par; mod tempfile; mod term; mod time; |
