polydat 0.1.0

Polydat — generation kernel for deterministic variate generation in nb-rs (formerly nbrs-variates)
Documentation
1
2
3
4
5
6
7
8
9
10
11
// string_generation.gk — String value generation pipeline.
//
// Exercises string nodes: combinations, format_u64, number_to_words.
//
// Expected events:
//   BindingResolved for each string node

input cycle: u64
code := combinations(hash(cycle), "A-Z0-9", 8)
decimal := format_u64(cycle, 10)
hex := format_u64(hash(cycle), 16)