DistributedMemoryManager<T> Constructor

Definition

Namespace: Numerics.NET.Distributed
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

DistributedMemoryManager<T>(Span<T>) Create a new DistributedMemoryManager instance at the given pointer and size
DistributedMemoryManager<T>(IntPtr, Int32) Create a new DistributedMemoryManager instance at the given pointer and size

DistributedMemoryManager<T>(Span<T>)

Create a new DistributedMemoryManager instance at the given pointer and size
C#
public DistributedMemoryManager(
	Span<T> span
)

Parameters

span  Span<T>
 

Remarks

It is assumed that the span provided is already unmanaged or externally pinned

DistributedMemoryManager<T>(IntPtr, Int32)

Create a new DistributedMemoryManager instance at the given pointer and size
C#
public DistributedMemoryManager(
	IntPtr pointer,
	int length
)

Parameters

pointer  IntPtr
 
length  Int32
 

See Also