ProxyFactory.destruct

Destructs a component of type T.

class ProxyFactory(T)
@trusted
void
destruct
(
ref T component
)
if (
(
is(T == class) &&
!isFinalClass!T
&&
!isAbstractClass!T
)
||
(is(T == interface))
)

Parameters

component T

component that is to ve destroyed.

Return Value

Type: void

Meta