TypeRegistry.has

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

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

Parameters

sid string

The string id to look up.

Return Value

Type: bool

true if the ID was found, false otherwise.

Meta