HandleManager.get

Retrieves an element from the handle manager by its handle. If no element exists at the handle, or the handle is no longer valid, null is returned. If the type of the stored element cannot store null, an exception is raised instead.

  1. T get(Handle!T handle)
    class HandleManager(T, size_t entryCount = 2^^12)
    const
    T
    get
    if (
    entryCount > 0
    )
  2. bool get(Handle!T handle, T object)

Return Value

Type: T

An element stored in the handle manager.

Meta