MemoryHelper.dispose

@nogc delete for classes and interfaces.

- If this function is called on classes that inherit from NoGCClass / NoGCInterface (and are instantiated with @nogc new), this functon will free memory and call object's destructor.

- If it is called on classes allocated with GC, only the destructor will be called.

  1. void dispose(T instance, string file, int line)
    class MemoryHelper
    @nogc static
    void
    dispose
    (
    T
    )
    (
    ref T instance
    ,
    string file = __FILE__
    ,
    int line = __LINE__
    )
    if (
    is(T == class) ||
    is(T == interface)
    )
  2. void dispose(T* instance, string file, int line)
  3. void dispose(T instance, string file, int line)

Meta