matchTweetsCount method

LogicalChannel matchTweetsCount(
  1. Range range
)
inherited

Matches Tweets when the author has posted a number of Tweets that falls within the given range.

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 matchTweetsCount(final Range range) => _buffer.appendOperator(
      _standaloneOperation.createTweetsCount(range),
    );