matchListedCount method

LogicalChannel matchListedCount(
  1. Range range
)
inherited

Matches Tweets when the author is included in the specified number of Lists.

If a single number is specified, any number equal to or higher will match.

Additionally, a range can be specified to match any number in the given range.

Parameters

  • range: The range to be matched.

Type

Availability

  • Essential

Implementation

LogicalChannel matchListedCount(final Range range) => _buffer.appendOperator(
      _standaloneOperation.createListedCount(range),
    );