findLinksByExample method

Iterator<Link> findLinksByExample([
  1. Iterable? examples
])

Search for Links by matching the Link data with example data holding values, RegExps, or predicates.

See the documentation of #findNodesByExample for how the example data can match data of bound Parts. @param {...Object} examples one or more JavaScript Objects whose properties are either predicates to be applied or RegExps to be tested or values to be compared to the corresponding data property value @return {Iterator.} @see #findNodesByExample @since 1.5

Implementation

_i3.Iterator<_i3.Link> findLinksByExample(
        [_i2.Iterable<_i2.dynamic>? examples]) =>
    _i4.callMethod(
      this,
      'findLinksByExample',
      [...?examples],
    );