[#absl-MakeSeedSeq] = xref:absl.adoc[absl]::MakeSeedSeq :relfileprefix: ../ :mrdocs: Constructs an `absl::SeedSeq` salted with implementation‐defined entropy. == Synopsis Declared in `<absl/random/seed_sequences.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/SeedSeq.adoc[SeedSeq] MakeSeedSeq(); ---- == Description The returned sequence can be used to create equivalent bit generators correlated using this sequence. Example: auto my_seed_seq = absl::MakeSeedSeq(); std::mt19937 rng1(my_seed_seq); std::mt19937 rng2(my_seed_seq); EXPECT_EQ(rng1(), rng2()); == Return Value A newly constructed seed sequence. [.small]#Created with https://www.mrdocs.com[MrDocs]#