Package

purescript-exists

Repository
purescript/purescript-exists
License
BSD-3-Clause
Uploaded by
pacchettibotti
Published on
2022-04-27T14:26:14Z

Latest release Build status Pursuit

The Exists type, for encoding existential types.

Installation

spago install exists

Overview

The type Exists f is isomorphic to the existential type exists a. f a.

For example, consider the type exists s. Tuple s (s -> Tuple s a) which represents infinite streams of elements of type a.

This type can be constructed by creating a type constructor StreamF as follows:

data StreamF a s = StreamF s (s -> Tuple s a)

We can then define the type of streams using Exists:

type Stream a = Exists (StreamF a)

The mkExists and runExists functions then enable packing and unpacking of SteamF into/out of Stream.

Documentation

Module documentation is published on Pursuit.

Modules
Data.Exists
Dependencies