StreamAddress Constructor

Definition

Namespace: Numerics.NET.Random
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0

Overload List

StreamAddress(ReadOnlySpan<UInt64>) Initializes a new instance of the StreamAddress struct with segments from a span.
StreamAddress(UInt64) Initializes a new instance of the StreamAddress struct with a single segment.

StreamAddress(ReadOnlySpan<UInt64>)

Initializes a new instance of the StreamAddress struct with segments from a span.
C#
public StreamAddress(
	ReadOnlySpan<ulong> segments
)

Parameters

segments  ReadOnlySpan<UInt64>
The stream segment values.

StreamAddress(UInt64)

Initializes a new instance of the StreamAddress struct with a single segment.
C#
public StreamAddress(
	ulong segment
)

Parameters

segment  UInt64
The stream segment value.

See Also