remove<T> abstract method
Remove the data of a specific type.
{String, 'Hello, World!'}
data.remove<String>(); // true
data.remove<User>(); // false
Implementation
bool remove<T>();
Remove the data of a specific type.
{String, 'Hello, World!'}
data.remove<String>(); // true
data.remove<User>(); // false
bool remove<T>();