TypeRegistry.has

Gets whether the type registry has a given numeric ID registered within it.

  1. bool has(string sid)
  2. bool has(uint nid)
    struct TypeRegistry(T, Args...)
    @nogc
    bool
    has
    (
    uint nid
    )

Parameters

nid uint

The numeric id to look up.

Return Value

Type: bool

true if the ID was found, false otherwise.

Meta