other-languages.md

September 17, 2022 ยท View on GitHub

Set types in other languages

Other languages

  • C# HashSet
  • F# - Collections.Set
  • Haskell - Data.Set
  • Python - set/frozenset
  • Hack - HH\Set
  • Ruby - Set

Java

Java Set interface is rather limited and doesn't include APIs found in this proposal.

Though, Java 8 introduces stream API that allow to deal with arbitrary collections.

Stream API has methods from this proposal like union (as concat).

Stream API nor Set does not include intersection, xor.

Contents

  1. 1Set types in other languages
  2. 1.1Other languages
  3. 1.2Java