-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Factoring bigint, rational, and complex out of libextra into libnum.
Removed use of globs present in earlier versions of modules. Fix tutorial.md to reflect `extra::rational` ==> `num::rational`.
- Loading branch information
Showing
9 changed files
with
47 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
#[feature(macro_rules)]; | ||
|
||
#[crate_id = "num#0.10-pre"]; | ||
#[crate_type = "rlib"]; | ||
#[crate_type = "dylib"]; | ||
#[license = "MIT/ASL2"]; | ||
|
||
extern mod extra; | ||
|
||
pub mod bigint; | ||
pub mod rational; | ||
pub mod complex; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d2d1129
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
saw approval from alexcrichton
at pnkfelix@d2d1129
d2d1129
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
merging pnkfelix/rust/fsk-factor-bigint-and-rat-out-of-libextra = d2d1129 into auto
d2d1129
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pnkfelix/rust/fsk-factor-bigint-and-rat-out-of-libextra = d2d1129 merged ok, testing candidate = fd4979a
d2d1129
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
all tests pass:
success: http://buildbot.rust-lang.org/builders/auto-mac-32-opt/builds/4151
success: http://buildbot.rust-lang.org/builders/auto-mac-32-nopt-c/builds/1993
success: http://buildbot.rust-lang.org/builders/auto-mac-32-nopt-t/builds/1995
success: http://buildbot.rust-lang.org/builders/auto-mac-64-opt/builds/4150
success: http://buildbot.rust-lang.org/builders/auto-mac-64-nopt-c/builds/3250
success: http://buildbot.rust-lang.org/builders/auto-mac-64-nopt-t/builds/3256
success: http://buildbot.rust-lang.org/builders/auto-linux-32-opt/builds/4165
success: http://buildbot.rust-lang.org/builders/auto-linux-32-nopt-c/builds/3253
success: http://buildbot.rust-lang.org/builders/auto-linux-32-nopt-t/builds/3259
success: http://buildbot.rust-lang.org/builders/auto-linux-64-opt/builds/4167
success: http://buildbot.rust-lang.org/builders/auto-linux-64-nopt-c/builds/3253
success: http://buildbot.rust-lang.org/builders/auto-linux-64-nopt-t/builds/3258
success: http://buildbot.rust-lang.org/builders/auto-linux-64-x-android/builds/3327
success: http://buildbot.rust-lang.org/builders/auto-linux-64-x-android-t/builds/1105
success: http://buildbot.rust-lang.org/builders/auto-win-32-opt/builds/4158
success: http://buildbot.rust-lang.org/builders/auto-win-32-nopt-c/builds/3259
success: http://buildbot.rust-lang.org/builders/auto-win-32-nopt-t/builds/3264
success: http://buildbot.rust-lang.org/builders/auto-bsd-64-opt/builds/3927
d2d1129
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fast-forwarding master to auto = fd4979a