matchFollowingCount method

LogicalChannel matchFollowingCount(
  1. Range range
)
inherited

Matches Tweets when the author has a friends count (the number of users they follow) 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 matchFollowingCount(final Range range) =>
    _buffer.appendOperator(
      _standaloneOperation.createFollowingCount(range),
    );