TheFuture
module implements future behavior of already existing functions, which will replace the current version in a future release of Julia.
Future.copy!
—FunctionFuture.copy!(dst, src) -> dst
Copysrc
intodst
.
This function has moved toBase
with Julia 1.1, consider usingcopy!(dst, src)
instead.Future.copy!
will be deprecated in the future.
Future.randjump
—Functionrandjump(r::MersenneTwister, steps::Integer) -> MersenneTwister
Create an initializedMersenneTwister
object, whose state is moved forward (without generating numbers) fromr
bysteps
steps. One such step corresponds to the generation of twoFloat64
numbers. For each different value ofsteps
, a large polynomial has to be generated internally. One is already pre-computed forsteps=big(10)^20
.
Settings
This document was generated withDocumenter.jl version 1.8.0 onWednesday 9 July 2025. Using Julia version 1.11.6.