1
1
mirror of https://github.com/github/semantic.git synced 2024-12-23 06:41:45 +03:00

Specify the export list for the record module.

This commit is contained in:
Rob Rix 2016-07-22 10:07:04 -04:00
parent ab4b0d4563
commit d37b9be8d2

View File

@ -1,5 +1,11 @@
{-# LANGUAGE DataKinds, GADTs, KindSignatures, MultiParamTypeClasses, ScopedTypeVariables, TypeOperators #-}
module Data.Record where
module Data.Record
( Record(RNil)
, (.:)
, HasField(..)
, maybeGetField
, updateField
) where
import GHC.Show
import Prologue