source: trunk/plugins/LocalFilesEditor/codemirror/mode/haskell/index.html @ 10307

Last change on this file since 10307 was 10307, checked in by patdenice, 13 years ago

feature:2262
Replace editarea by Codemirror:
http://codemirror.net

File size: 1.7 KB
Line 
1<!doctype html>
2<html>
3  <head>
4    <title>CodeMirror 2: Haskell mode</title>
5    <link rel="stylesheet" href="../../lib/codemirror.css">
6    <script src="../../lib/codemirror.js"></script>
7    <script src="haskell.js"></script>
8    <link rel="stylesheet" href="haskell.css">
9    <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
10    <link rel="stylesheet" href="../../css/docs.css">
11  </head>
12  <body>
13    <h1>CodeMirror 2: Haskell mode</h1>
14
15<form><textarea id="code" name="code">
16module UniquePerms (
17    uniquePerms
18    )
19where
20
21-- | Find all unique permutations of a list where there might be duplicates.
22uniquePerms :: (Eq a) => [a] -> [[a]]
23uniquePerms = permBag . makeBag
24
25-- | An unordered collection where duplicate values are allowed,
26-- but represented with a single value and a count.
27type Bag a = [(a, Int)]
28
29makeBag :: (Eq a) => [a] -> Bag a
30makeBag [] = []
31makeBag (a:as) = mix a $ makeBag as
32  where
33    mix a []                        = [(a,1)]
34    mix a (bn@(b,n):bs) | a == b    = (b,n+1):bs
35                        | otherwise = bn : mix a bs
36
37permBag :: Bag a -> [[a]]
38permBag [] = [[]]
39permBag bs = concatMap (\(f,cs) -> map (f:) $ permBag cs) . oneOfEach $ bs
40  where
41    oneOfEach [] = []
42    oneOfEach (an@(a,n):bs) =
43        let bs' = if n == 1 then bs else (a,n-1):bs
44        in (a,bs') : mapSnd (an:) (oneOfEach bs)
45   
46    apSnd f (a,b) = (a, f b)
47    mapSnd = map . apSnd
48</textarea></form>
49
50    <script>
51      var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
52        lineNumbers: true,
53        matchBrackets: true
54      });
55    </script>
56
57    <p><strong>MIME types defined:</strong> <code>text/x-haskell</code>.</p>
58  </body>
59</html>
Note: See TracBrowser for help on using the repository browser.