seedfaker-core 0.4.0-alpha.1

Core library for seedfaker — deterministic synthetic generator for realistic, correlated, and noisy test records
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::ctx::GenContext;

/// Weighted gender distribution reflecting real-world demographics.
/// ~49% Male, ~49% Female, ~2% Non-binary (Gallup 2023 data).
pub fn gen(ctx: &mut GenContext<'_>, buf: &mut String) {
    let w = ctx.rng.urange(0, 99);
    buf.push_str(match w {
        0..=48 => "Male",    // 49%
        49..=97 => "Female", // 49%
        _ => "Non-binary",   //  2%
    });
}