Exemplo n.º 1
0
 @Deprecated
 @operator(value = "rnd_float")
 @doc(
     deprecated = "Use rnd instead with a float argument",
     examples = {
       @example(
           value = "rnd_float(3)",
           equals = "a random float between 0.0 and 3.0",
           test = false)
     },
     see = {"rnd"})
 public static Double opRndFloat(final IScope scope, final Double max) {
   return Random.opRnd(scope, max);
 }