diff options
| author | Brian Anderson <andersrb@gmail.com> | 2011-05-20 22:12:35 -0400 |
|---|---|---|
| committer | Brian Anderson <andersrb@gmail.com> | 2011-05-20 22:12:57 -0400 |
| commit | fc8b9671bbcfbe91857220538a1447fab4988dfc (patch) | |
| tree | 7f81d4d73f8f925202303cbed86467f825e413df /src/lib | |
| parent | 04ce99b83cac159fddfb33e3a113d82686b7f1cc (diff) | |
| download | rust-fc8b9671bbcfbe91857220538a1447fab4988dfc.tar.gz rust-fc8b9671bbcfbe91857220538a1447fab4988dfc.zip | |
stdlib: Export only what's needed from std::bitv
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/bitv.rs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/lib/bitv.rs b/src/lib/bitv.rs index b2f07fa2d38..90bbde1c619 100644 --- a/src/lib/bitv.rs +++ b/src/lib/bitv.rs @@ -1,3 +1,22 @@ +export t; +export create; +export union; +export intersect; +export copy; +export clone; +export get; +export equal; +export clear; +export set_all; +export invert; +export difference; +export set; +export is_true; +export is_false; +export to_vec; +export to_str; +export eq_vec; + // FIXME: With recursive object types, we could implement binary methods like // union, intersection, and difference. At that point, we could write // an optimizing version of this module that produces a different obj |
