diff options
author | Eduardo Julian | 2022-07-08 17:47:23 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-07-08 17:47:23 -0400 |
commit | 7976268575e7c6910dfba2d2733e8cc1883678e7 (patch) | |
tree | 0ce156081612235c0df5e2ad9167be3fc5d75c6c /stdlib/source/documentation/lux/math/random.lux | |
parent | 39325bb36c6f6459c861ef12f9e99b9e66b52594 (diff) |
Re-named the "documentation" macro to "definition".
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/documentation/lux/math/random.lux | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/stdlib/source/documentation/lux/math/random.lux b/stdlib/source/documentation/lux/math/random.lux index 5f1a41f7d..a67401555 100644 --- a/stdlib/source/documentation/lux/math/random.lux +++ b/stdlib/source/documentation/lux/math/random.lux @@ -49,71 +49,71 @@ ($.default /.month) ($.default /.day) - ($.documentation /.PRNG + ($.definition /.PRNG "An abstract way to represent any PRNG.") - ($.documentation (/.Random it) + ($.definition (/.Random it) "A producer of random values based on a PRNG.") - ($.documentation /.only + ($.definition /.only "Retries the generator until the output satisfies a predicate." [(only pred gen)]) - ($.documentation /.one + ($.definition /.one "" [(one check random)]) - ($.documentation /.refined + ($.definition /.refined "Retries the generator until the output can be refined." [(refined refiner gen)]) - ($.documentation /.safe_frac + ($.definition /.safe_frac "A number in the interval [0.0,1.0].") - ($.documentation /.text + ($.definition /.text "" [(text char_gen size)]) - ($.documentation /.and + ($.definition /.and "Sequencing combinator." [(and left right)]) - ($.documentation /.or + ($.definition /.or "Heterogeneous alternative combinator." [(or left right)]) - ($.documentation /.either + ($.definition /.either "Homogeneous alternative combinator." [(either left right)]) - ($.documentation /.rec + ($.definition /.rec "A combinator for producing recursive random generators." [(rec gen)]) - ($.documentation /.set + ($.definition /.set "" [(set hash size value_gen)]) - ($.documentation /.dictionary + ($.definition /.dictionary "" [(dictionary hash size key_gen value_gen)]) - ($.documentation /.result + ($.definition /.result "" [(result prng calc)]) - ($.documentation /.prng + ($.definition /.prng "" [(prng update return)]) - ($.documentation /.pcg_32 + ($.definition /.pcg_32 (format "An implementation of the PCG32 algorithm." \n "For more information, please see: http://www.pcg-random.org/")) - ($.documentation /.xoroshiro_128+ + ($.definition /.xoroshiro_128+ (format "An implementation of the Xoroshiro128+ algorithm." \n "For more information, please see: http://xoroshiro.di.unimi.it/")) - ($.documentation /.split_mix_64 + ($.definition /.split_mix_64 "An implementation of the SplitMix64 algorithm.")] [])) |