518dc52f85
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
35 lines
710 B
Rust
35 lines
710 B
Rust
|
|
|
|
|
|
/**
|
|
* Bindings the runtime's random number generator (ISAAC).
|
|
*/
|
|
native "rust" mod rustrt {
|
|
type rctx;
|
|
fn rand_new() -> rctx;
|
|
fn rand_next(c: rctx) -> u32;
|
|
fn rand_free(c: rctx);
|
|
}
|
|
|
|
type rng =
|
|
obj {
|
|
fn next() -> u32;
|
|
};
|
|
|
|
resource rand_res(c: rustrt::rctx) { rustrt::rand_free(c); }
|
|
|
|
fn mk_rng() -> rng {
|
|
obj rt_rng(c: @rand_res) {
|
|
fn next() -> u32 { ret rustrt::rand_next(**c); }
|
|
}
|
|
ret rt_rng(@rand_res(rustrt::rand_new()));
|
|
}
|
|
// Local Variables:
|
|
// mode: rust;
|
|
// fill-column: 78;
|
|
// indent-tabs-mode: nil
|
|
// c-basic-offset: 4
|
|
// buffer-file-coding-system: utf-8-unix
|
|
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
|
// End:
|