Table of Contents

Class PriorityQueueNode<T>

Namespace
Stride.Core.Collections
Assembly
Stride.Core.dll

Represents a node in a priority queue, to allow O(n) removal.

public class PriorityQueueNode<T>

Type Parameters

T
Inheritance
PriorityQueueNode<T>

Constructors

PriorityQueueNode(T)

public PriorityQueueNode(T value)

Parameters

value T

Fields

Value

public T Value

Field Value

T

Properties

Index

public int Index { get; }

Property Value

int