Skip to content

Commit

Permalink
yampa: Adjust format of export lists (KSG Haskell 1.3.0 - 4.2). Refs #…
Browse files Browse the repository at this point in the history
…212.

For lists or tuple elements separated by commas in which each value is listed
in a separate line, and when the Haskell syntax allows it, the comma must be
the first character of every line but the first.

This commit adjust commas and indentation of export lists.
  • Loading branch information
ivanperez-keera committed May 14, 2022
1 parent 4643498 commit ecfd361
Showing 1 changed file with 23 additions and 22 deletions.
45 changes: 23 additions & 22 deletions yampa/examples/yampa-game/IdentityList.hs
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,29 @@
******************************************************************************
-}

module IdentityList (
ILKey,
IL,
emptyIL,
insertIL_,
insertIL,
listToIL,
keysIL,
elemsIL,
assocsIL,
deleteIL,
updateIL,
updateILWith,
mapIL,
filterIL,
mapFilterIL,
lookupIL,
findIL,
mapFindIL,
findAllIL,
mapFindAllIL
) where
module IdentityList
( ILKey
, IL
, emptyIL
, insertIL_
, insertIL
, listToIL
, keysIL
, elemsIL
, assocsIL
, deleteIL
, updateIL
, updateILWith
, mapIL
, filterIL
, mapFilterIL
, lookupIL
, findIL
, mapFindIL
, findAllIL
, mapFindAllIL
)
where

import Data.List (find)

Expand Down

0 comments on commit ecfd361

Please sign in to comment.