# Functions
NewFloatFibHeap creates a new, empty, Fibonacci heap object.
# Structs
Entry is the entry type that will be used for each node of the Fibonacci heap.
FloatingFibonacciHeap is an implementation of a fibonacci heap with only floating-point priorities and no user data attached.
# Type aliases
EmptyHeapError fires when the heap is empty and an operation could not be completed for that reason.
NilError fires when a heap or entry is nil and an operation could not be completed for that reason.