intersectionOf

Computes the intersection of setA and setB as a set operation and returns the retult in a new sorted array. Both setA and setB are required to be sorted. If either setA or setB contain duplicates, the result will contain the smaller number of duplicates from setA and setB. All entries will be copied from setA. Comparisons will be performed using the supplied predicate or '<' if none is supplied.

  1. Elem[] intersectionOf(Elem[] setA, Elem[] setB, Pred2E pred)
    version(TangoDoc)
    intersectionOf
  2. template intersectionOf(BufA, BufB)
  3. template intersectionOf(BufA, BufB, Pred)

Parameters

setA Elem[]

The first sorted array to evaluate.

setB Elem[]

The second sorted array to evaluate.

pred Pred2E

The evaluation predicate, which should return true if e1 is less than e2 and false if not. This predicate may be any callable type.

Return Value

Type: Elem[]

A new array containing the intersection of setA and setB.

Meta