#11547 (Accessing shadowed definitions in GHCi) – GHC

Search: Login Help/Guide About Trac Preferences Register Wiki Timeline Roadmap Browse Source View Tickets Search Blog ← Previous Ticket Next Ticket → GHC Trac Home GHC Git Repos GHC Home Joining In Report a bug Newcomers info Mailing Lists & IRC The GHC Team Documentation GHC Status Info Repositories Building Guide Working conventions Commentary Debugging Infrastructure View Tickets My Tickets Tickets I Created By Milestone By OS By Architecture Patches for review Create Ticket New Bug New Task New Feature Req Wiki Title Index Recent Changes Wiki Notes Opened 4 days ago Last modified 8 hours ago #11547 new bug Accessing shadowed definitions in GHCi Reported by: mniip Owned by: Priority: normal Milestone: Component: GHCi Version: 8.0.1-rc1 Keywords: Cc: Operating System: Unknown/Multiple Architecture: ...

Linked on 2016-02-09 22:33:22 | Similar Links
yoctoparsec/Yoctoparsec.hs at master · mniip/yoctoparsec · GitHub

Skip to content Sign up Sign in </textarea> '"` This repository Explore Features Enterprise Pricing Watch 2 Star 3 Fork 0 mniip / yoctoparsec Code Issues 0 Pull requests 0 Pulse Graphs Permalink blob contrib key: blob_contributors:v21:0fc4dedb7c485aaa3b26489d1857ebf9 Branch: master Switch branches/tags Branches Tags master Nothing to show Nothing to show Find file Copy path yoctoparsec / src / Control / Monad / Yoctoparsec.hs dfe0dd1 Feb 4, 2016 mniip Mention hoistFreeT 1 contributor mniip Raw Blame History 55 lines (49 sloc) 2.03 KB -------------------------------------------------------------------------------- -- | -- Module : Control.Monad.Yoctoparsec -- Copyright : (C) 2016 mniip -- License ...

Linked on 2016-02-06 20:39:20 | Similar Links
monadic parser :: lpaste — Lambda pastebin

λ Browse Contact monadic parser Edit - Annotate - Report/Delete - Raw - Clone in IDE Paste: #151381 Author(s): mniip Language: Haskell Channel: #haskell Context in IRC logs Created: 2016-01-31 22:47:14 UTC 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 import Control . Applicative import Control . Monad import Control . Monad . Trans . Free import Control . Monad . State -- A 'Parser b t a' is a parser that consumes a stream of 't' tokens and yields -- an 'a' value, while operating under the 'b' backtracking monad. For most -- purposes, 'b' should be a MonadPlus. Useful examples include '[]' for full -- backtracking, 'Maybe' for no backtracking, 'StateT []' for parsers that need -- additional state which is automagically rollbacked when backtracking, and so -- on. -- FreeT automagically provides us with (correct) instanc...

Linked on 2016-02-02 07:41:15 | Similar Links
show at bpaste

new paste removals 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 {-# LANGUAGE TypeOperators, MultiParamTypeClasses, FunctionalDependencies, FlexibleInstances, FlexibleContexts, RankNTypes #-} module Prelude.Prolog.Int ( P ( .. ), N ( .. ), Z ( .. ), O ( .. ), Increment ( .. ), Decrement ( .. ), Invert ( .. ), Negate ( .. ), ( + )( .. ), ( * )( .. ), ...

Linked on 2016-01-29 02:17:32 | Similar Links
BadBuzz/mniip.hs at master · AbstractBeliefs/BadBuzz · GitHub

Skip to content Sign up Sign in </textarea> '"` This repository Explore Features Enterprise Pricing Watch 1 Star 5 Fork 10 AbstractBeliefs / BadBuzz Code Issues 0 Pull requests 0 Pulse Graphs Permalink blob contrib key: blob_contributors:v21:4cdaa0ac106c80993c7ab8e6ee63ad42 Branch: master Switch branches/tags Branches Tags master testing Nothing to show Nothing to show Find file Copy path BadBuzz / Haskell / mniip.hs 0bfaf58 Jan 16, 2016 mniip Add fizzbuzz computed entirely in the typechecker 1 contributor mniip Raw Blame History 150 lines (117 sloc) 4.82 KB {-# LANGUAGE MultiParamTypeClasses, FunctionalDependencies, FlexibleInstances, FlexibleContexts, UndecidableInstances #-} {-# OPTIONS_GHC -fcontext-stack=30...

Linked on 2016-01-29 02:03:47 | Similar Links