Skip to content
This repository was archived by the owner on Jul 23, 2021. It is now read-only.
This repository was archived by the owner on Jul 23, 2021. It is now read-only.

zipAll is missing in OrderedSet #155

Open
@Methuselah96

Description

@Methuselah96

From @absassi on Mon, 30 Sep 2019 15:18:23 GMT

What happened

zipAll is not available for OrderedSet, but it is documented at https://immutable-js.github.io/immutable-js/docs/#/OrderedSet/zipAll

How to reproduce

import { OrderedSet } from 'immutable'
OrderedSet().zipAll(OrderedSet())

The above code throws TypeError: OrderedSet(...).zipAll is not a function.

Other collections documented to support zipAll work as expected, so workarounds like the following are available:

OrderedSet().valueSeq().zipAll(OrderedSet())
OrderedSet().toList().zipAll(OrderedSet())

Copied from original issue: immutable-js#1738

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions