defrand()->Func:""" Returns the random integer value. Returns: Func: A `Func` object that represents the rand function. Example: ```py dc.mutate( rnd=func.random.rand(), ) ``` Note: - The result column will always be of type integer. """returnFunc("rand",inner=random.rand,result_type=int)