about summary refs log tree commit diff
path: root/src/lib/rand.rs
AgeCommit message (Collapse)AuthorLines
2011-12-06Establish 'core' library separate from 'std'.Graydon Hoare-86/+0
2011-11-22Fix long linesElly Jones-1/+2
2011-11-22std: add fs::mkdir(), rng.gen_str(), tempfile::mkdtemp()Elly Jones-0/+20
Signed-off-by: Elly Jones <elly@leptoquark.net>
2011-11-17remove compile-command from local variable blocksNiko Matsakis-1/+0
2011-11-16Use attributes for native module ABI and link nameHaitao Li-1/+2
This patch changes how to specify ABI and link name of a native module. Before: native "cdecl" mod llvm = "rustllvm" {...} After: #[abi = "cdecl"] #[link_name = "rustllvm"] native mod llvm {...} The old optional syntax for ABI and link name is no longer supported. Fixes issue #547
2011-11-15Replaced constant functions with actual constants in std and updated testsStefan Plantikow-1/+1
Fixes issue #1165
2011-11-09Rename "c-stack-cdecl" ABI to "cdecl"Brian Anderson-1/+1
2011-10-26Add more std documentationBrian Anderson-10/+33
2011-10-24move rand functions into c-stack-cdecl modeNiko Matsakis-1/+1
2011-10-17[Lib] rand.rs: type rng now defines next_floatDavid Rajchenbach-Teller-0/+8
2011-08-20ReformatBrian Anderson-7/+6
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
2011-07-29Replace obj dtors with resources in stdlib and rustcMarijn Haverbeke-8/+8
2011-07-27Some more obj dtor reformattingMarijn Haverbeke-1/+2
2011-07-27Reformat for new syntaxMarijn Haverbeke-3/+3
2011-06-15Fix a bunch of compile-command lines to use RBUILDGraydon Hoare-1/+1
2011-06-15Reformat source tree (minus a couple tests that are still grumpy).Graydon Hoare-8/+8
2011-05-12Downcase std modules again, move to :: for module dereferencingMarijn Haverbeke-0/+34
This should be a snapshot transition.
2011-05-06Rename std modules to be camelcasedMarijn Haverbeke-34/+0
(Have fun mergining your stuff with this.)
2010-09-22Reformat standard library; no code changes.Graydon Hoare-12/+21
2010-07-25Expose an RNG (the one used by our runtime) to Rust via std.Roy Frostig-0/+25