Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Supporting a new set methods #3853

Merged
merged 25 commits into from
Jul 2, 2024
Merged

Commits on Apr 2, 2024

  1. 3850 - if you're using the corepack (https://nodejs.org/api/corepack.…

    …html) it enables correct version of Yarn
    inoyakaigor committed Apr 2, 2024
    Configuration menu
    Copy the full SHA
    6572115 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    eabcdde View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2024

  1. Configuration menu
    Copy the full SHA
    9763039 View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2024

  1. Configuration menu
    Copy the full SHA
    7131add View commit details
    Browse the repository at this point in the history
  2. 3850 - review fixes: move reportObserved() into conditions branch; ch…

    …ange strict inequality operator to strict equality
    inoyakaigor committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    6b93c8a View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2024

  1. Configuration menu
    Copy the full SHA
    4e438bb View commit details
    Browse the repository at this point in the history

Commits on May 2, 2024

  1. Configuration menu
    Copy the full SHA
    f5d6863 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2024

  1. Configuration menu
    Copy the full SHA
    46df92b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4a258c7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cf22937 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2024

  1. 3850 - update TS to Beta

    inoyakaigor committed Jun 6, 2024
    Configuration menu
    Copy the full SHA
    a109642 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4767248 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2024

  1. Configuration menu
    Copy the full SHA
    538ac5a View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2024

  1. 3850 - change test for Set methods; change source code for methods wh…

    …ich gives different results depends on place of operands:
    
    SET1 AGAINST SET2
      intersection         Set(2) { 1, 2 }
      union                Set(6) { 1, 2, 3, 4, 5, 6 }
      difference           Set(2) { 4, 5 }
      symmetricDifference  Set(3) { 1, 2, 5 }
      isSubsetOf           false
      isSupersetOf         false
      isDisjointFrom       true
    
    SET2 AGAINST SET1
      intersection         Set(2) { 1, 2 }
      union                Set(6) { 1, 2, 6, 3, 4, 5 }
      difference           Set(0) {}
      symmetricDifference  Set(3) { 1, 2, 5 }
      isSubsetOf           true
      isSupersetOf         true
      isDisjointFrom       true
    inoyakaigor committed Jun 16, 2024
    Configuration menu
    Copy the full SHA
    30fa622 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    615b9e7 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'master' into 3850-new-set-methods

    # Conflicts:
    #	.github/workflows/coveralls.yml
    inoyakaigor committed Jun 16, 2024
    Configuration menu
    Copy the full SHA
    68887de View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2024

  1. Configuration menu
    Copy the full SHA
    7b7317b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    74a307a View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2024

  1. Configuration menu
    Copy the full SHA
    8ca04e6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5f06ab2 View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2024

  1. Configuration menu
    Copy the full SHA
    00d4cc9 View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2024

  1. Configuration menu
    Copy the full SHA
    81c2329 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    113558b View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2024

  1. Configuration menu
    Copy the full SHA
    4acd882 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d68dd2a View commit details
    Browse the repository at this point in the history