make_random


function make_random<Value>() -> Random<Value>

Create a Random.

function make_random<Value>(x:Value) -> Random<Value>

Box a value in a Random.

  • x Value to assign.

function make_random<Value>(x:Value?) -> Random<Value>

Box a value in a Random.

  • x Value to assign.

function make_random<Value>(x:Value!) -> Random<Value>

Box a value in a Random.

  • x Value to assign.

function make_random<Value>(x:Value!?) -> Random<Value>

Box a value in a Random.

  • x Optional value to assign.

function make_random<Value>(x:Random<Value>) -> Random<Value>

Box a value in a Random (identity operation).

  • x Existing object.