euphoria-0.6.0.1: Dynamic network FRP with events and continuous values

Safe HaskellSafe
LanguageHaskell98

FRP.Euphoria.Internal.Maplike

Synopsis

Documentation

class Maplike c k where Source

A class for types with an API similar to that of Data.Map.

Minimal complete definition

union, intersection, difference, empty, lookup, toList

Methods

union :: c k v -> c k v -> c k v Source

intersection :: c k v -> c k v -> c k v Source

difference :: c k v -> c k v -> c k v Source

empty :: c k v Source

lookup :: k -> c k v -> Maybe v Source

singleton :: k -> v -> c k v Source

insert :: k -> v -> c k v -> c k v Source

delete :: k -> c k v -> c k v Source

toList :: c k v -> [(k, v)] Source

Instances