Skip to content

Implement set.difference() #73

@Smoren

Description

@Smoren

Compares first iterable against one or more other iterables and iterates the values in array that are not present in any of the other arrays.

function *difference<T>(
    ...iterables: Array<Iterable<T> | Iterator<T>>
): Iterable<T>

Needs to be implemented:

  • summary.difference()
  • summary.differenceAsync()
  • Stream.difference()
  • AsyncStream.difference()

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions