Sha256: 8b08a8beae631fa90a87ff55b4d353f96e1e07c96f69510452b288681499c9cb

Contents?: true

Size: 1.74 KB

Versions: 65

Compression:

Stored size: 1.74 KB

Contents

<!doctype html>
<html>
  <head>
    <title>CodeMirror: Haskell mode</title>
    <link rel="stylesheet" href="../../lib/codemirror.css">
    <script src="../../lib/codemirror.js"></script>
    <script src="haskell.js"></script>
    <link rel="stylesheet" href="../../theme/elegant.css">
    <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
    <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
    <h1>CodeMirror: Haskell mode</h1>

<form><textarea id="code" name="code">
module UniquePerms (
    uniquePerms
    )
where

-- | Find all unique permutations of a list where there might be duplicates.
uniquePerms :: (Eq a) => [a] -> [[a]]
uniquePerms = permBag . makeBag

-- | An unordered collection where duplicate values are allowed,
-- but represented with a single value and a count.
type Bag a = [(a, Int)]

makeBag :: (Eq a) => [a] -> Bag a
makeBag [] = []
makeBag (a:as) = mix a $ makeBag as
  where
    mix a []                        = [(a,1)]
    mix a (bn@(b,n):bs) | a == b    = (b,n+1):bs
                        | otherwise = bn : mix a bs

permBag :: Bag a -> [[a]]
permBag [] = [[]]
permBag bs = concatMap (\(f,cs) -> map (f:) $ permBag cs) . oneOfEach $ bs
  where
    oneOfEach [] = []
    oneOfEach (an@(a,n):bs) =
        let bs' = if n == 1 then bs else (a,n-1):bs
        in (a,bs') : mapSnd (an:) (oneOfEach bs)
    
    apSnd f (a,b) = (a, f b)
    mapSnd = map . apSnd
</textarea></form>

    <script>
      var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
        lineNumbers: true,
        matchBrackets: true,
        theme: "elegant"
      });
    </script>

    <p><strong>MIME types defined:</strong> <code>text/x-haskell</code>.</p>
  </body>
</html>

Version data entries

65 entries across 65 versions & 5 rubygems

Version Path
omf_web-0.9.1 share/htdocs/vendor/CodeMirror-2.32/mode/haskell/index.html
omf_web-0.9 share/htdocs/vendor/CodeMirror-2.32/mode/haskell/index.html
milksteak-0.0.13 lib/public/milksteak/codemirror2/mode/haskell/index.html
milksteak-0.0.12 lib/public/milksteak/codemirror2/mode/haskell/index.html
milksteak-0.0.11 lib/public/milksteak/codemirror2/mode/haskell/index.html
ledger_web-1.4.10 lib/ledger_web/public/codemirror/mode/haskell/index.html
milksteak-0.0.10 lib/public/milksteak/codemirror2/mode/haskell/index.html
milksteak-0.0.9 lib/public/milksteak/codemirror2/mode/haskell/index.html
milksteak-0.0.8 lib/public/milksteak/codemirror2/mode/haskell/index.html
milksteak-0.0.7 lib/public/milksteak/codemirror2/mode/haskell/index.html
milksteak-0.0.6 lib/public/milksteak/codemirror2/mode/haskell/index.html
milksteak-0.0.4 lib/public/milksteak/codemirror2/mode/haskell/index.html
milksteak-0.0.3 lib/public/milksteak/codemirror2/mode/haskell/index.html
milksteak-0.0.2 lib/public/milksteak/codemirror2/mode/haskell/index.html
ledger_web-1.4.9 lib/ledger_web/public/codemirror/mode/haskell/index.html
ledger_web-1.4.8 lib/ledger_web/public/codemirror/mode/haskell/index.html
ledger_web-1.4.7 lib/ledger_web/public/codemirror/mode/haskell/index.html
ledger_web-1.4.6 lib/ledger_web/public/codemirror/mode/haskell/index.html
ledger_web-1.4.4 lib/ledger_web/public/codemirror/mode/haskell/index.html
ledger_web-1.4.3 lib/ledger_web/public/codemirror/mode/haskell/index.html