LybLog/src/Methods/Private/FlushDeleteContainerAndItems.bf

13 lines
209 B
Beef
Raw Normal View History

2024-05-11 17:10:04 +02:00
namespace LybLog;
using System;
using System.Collections;
extension LybLog
{
private mixin FlushAndDeleteContainerAndItems(List<String> pContainer)
{
Flush();
DeleteContainerAndItems!(pContainer);
}
}