public bool Accepts(LogEntry logEntry) => AddressFilter.Accepts(logEntry.LoggersAddress) && TopicsFilter.Accepts(logEntry);
public bool Accepts(ref LogEntryStructRef logEntry) => AddressFilter.Accepts(ref logEntry.LoggersAddress) && TopicsFilter.Accepts(ref logEntry);
public bool Accepts(LogEntry logEntry) { return(_addressFilter.Accepts(logEntry.LoggersAddress) && _topicsFilter.Accepts(logEntry)); }