Table of Contents

Class Bulk

Namespace
Veritas
Assembly
Veritas.dll

Helpers for bulk identifier generation.

public static class Bulk
Inheritance
Bulk
Inherited Members

Methods

GenerateMany(SpanGenerator, int, int?)

Generates a sequence of identifiers using the provided generator delegate.

public static IEnumerable<string> GenerateMany(Bulk.SpanGenerator tryGenerate, int count, int? seed = null)

Parameters

tryGenerate Bulk.SpanGenerator

Delegate that attempts to write an identifier into the provided span.

count int

How many identifiers to produce.

seed int?

Optional seed for deterministic generation.

Returns

IEnumerable<string>

An enumerable sequence of generated identifiers.