Android Utililty Methods Random Boolean Create

List of utility methods to do Random Boolean Create

Description

The list of methods to do Random Boolean Create are organized into topic(s).

Method

booleangetRandomBoolean()
get Random Boolean
return getRandomBoolean(0.5f);
booleangetRandomBoolean(float bias)
get Random Boolean
return Math.random() < bias;