-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sort LANGUAGE pragmas, use my preferred module header format
- Loading branch information
Showing
1 changed file
with
16 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,30 @@ | ||
{-# LANGUAGE BlockArguments #-} | ||
{-# LANGUAGE CPP #-} | ||
{-# LANGUAGE DataKinds #-} | ||
{-# LANGUAGE PolyKinds #-} | ||
{-# LANGUAGE ViewPatterns #-} | ||
{-# LANGUAGE PatternSynonyms #-} | ||
{-# LANGUAGE DeriveAnyClass #-} | ||
{-# LANGUAGE ImplicitParams #-} | ||
{-# LANGUAGE MagicHash #-} | ||
{-# LANGUAGE PatternSynonyms #-} | ||
{-# LANGUAGE PolyKinds #-} | ||
{-# LANGUAGE RankNTypes #-} | ||
{-# LANGUAGE ImplicitParams #-} | ||
{-# LANGUAGE DeriveAnyClass #-} | ||
{-# LANGUAGE Trustworthy #-} | ||
{-# LANGUAGE BlockArguments #-} | ||
{-# LANGUAGE CPP #-} | ||
{-# LANGUAGE ViewPatterns #-} | ||
|
||
-- | | ||
-- Copyright : (c) Edward Kmett 2024 | ||
-- License : BSD-2-Clause OR Apache-2.0 | ||
-- Maintainer : Edward Kmett <[email protected]> | ||
-- Stability : experimental | ||
-- Portability: non-portable | ||
-- | ||
-- Various functions to indicate unfinished or generally unimplemented code | ||
|
||
#if __GLASGOW_HASKELL__ >= 980 | ||
#define WARNING_IN_XTODO WARNING in "x-todo" | ||
#else | ||
#define WARNING_IN_XTODO WARNING | ||
#endif | ||
|
||
{- | The 'Control.Placeholder' module implements various functions to indicate | ||
unfinished or generally unimplemented code | ||
-} | ||
module Control.Placeholder | ||
( | ||
-- * Combinators | ||
|