view dwtx/dwtxhelper/Random.d @ 195:a4d38d47ddc4

HashMap support for null values and keys
author Frank Benoit <benoit@tionex.de>
date Tue, 03 Feb 2009 16:08:10 +0100
parents 86617aa6b5dd
children
line wrap: on
line source

module dwtx.dwtxhelper.Random;

static import tango.math.random.Kiss;

class Random {
    tango.math.random.Kiss.Kiss kiss;

    public this(int seed ){
        kiss.seed(seed);
    }
    public bool  nextBoolean(){
        return kiss.toInt(2) is 0;
    }
}