mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
rand: simplify rand.PRNG, move to optional types for error handling (#13570)
This commit is contained in:
@ -9,5 +9,5 @@ const (
|
||||
|
||||
// random returns a random time struct in *the past*.
|
||||
pub fn random() time.Time {
|
||||
return time.unix(int(rand.i64n(misc.start_time_unix)))
|
||||
return time.unix(int(rand.i64n(misc.start_time_unix) or { 0 }))
|
||||
}
|
||||
|
Reference in New Issue
Block a user