Popularity
4.4
Growing
Activity
5.9
-
7
4
0

Monthly Downloads: 65
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Development     Record    

record-hasfield alternatives and similar packages

Based on the "record" category.
Alternatively, view record-hasfield alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of record-hasfield or a related project?

Add another 'record' Package

README

record-hasfield Hackage version Stackage version Build status

This package provides a version of "GHC.Records" as it will be after the implementation of GHC proposal #42, which reads:

-- | Constraint representing the fact that the field @x@ can be get and set on
--   the record type @r@ and has field type @a@.
class HasField x r a | x r -> a where
    -- | Function to get and set a field in a record.
    hasField :: r -> (a -> r, a)

In GHC these will be magically solved, but this package doesn't provide that. This package does provide extra helper functions for working with the HasField type class.