typed-encoding-0.5.1.0: Type safe string transformations

Safe HaskellSafe
LanguageHaskell2010

Examples.TypedEncoding.Util

Description

Some helper definitions used in Examples

Synopsis

Documentation

class HasA a c where Source #

Polymorphic data payloads used to encode/decode

This class is intended for example use only and will be moved to Example modules.

Use your favorite polymorphic records / ad-hock product polymorphism library.

Since: 0.1.0.0

Methods

has :: c -> a Source #

Instances
HasA () c Source # 
Instance details

Defined in Examples.TypedEncoding.Util

Methods

has :: c -> () Source #

HasA SizeLimit Config Source # 
Instance details

Defined in Examples.TypedEncoding.Overview

Methods

has :: Config -> SizeLimit Source #