Newest at the top
2025-04-06 19:18:57 +0200 | <emojelly> | ok, really gotta run now, but I'll read if there's anything more! Thanks again for the help so far! |
2025-04-06 19:18:41 +0200 | <emojelly> | (StT is actually coming from MonadTransControl, but shouldn't matter) |
2025-04-06 19:18:11 +0200 | <haskellbridge> | <hellwolf> check the doc, it has a list of rules when you can or cannot define dependencies |
2025-04-06 19:18:05 +0200 | <emojelly> | type StT t a :: * |
2025-04-06 19:18:03 +0200 | <emojelly> | for illustration, pretend the same class would define: |
2025-04-06 19:17:58 +0200 | <haskellbridge> | <hellwolf> but there is a lot of limitations, usually it won't work for you |
2025-04-06 19:17:46 +0200 | <haskellbridge> | <hellwolf> then you may use typefamilydependencies |
2025-04-06 19:17:35 +0200 | <emojelly> | It's a type family |
2025-04-06 19:17:22 +0200 | <haskellbridge> | <hellwolf> I don't know if it applies to your case. But I do see "StT t a1", I wonder what is StT. |
2025-04-06 19:17:00 +0200 | <c_wraith> | But it needs to know what t is to select an instance |
2025-04-06 19:16:50 +0200 | <emojelly> | yeah but I'm not sure how to use a fundep here when there's only a single type? |
2025-04-06 19:16:47 +0200 | <haskellbridge> | <hellwolf> type family has similar mechanism; which has its own limitation. |
2025-04-06 19:16:45 +0200 | <c_wraith> | err, in the type of |
2025-04-06 19:16:34 +0200 | <haskellbridge> | <hellwolf> GHC will check that |
2025-04-06 19:16:26 +0200 | <emojelly> | (have to run, will read later, thanks for the help so far!) |
2025-04-06 19:16:22 +0200 | <haskellbridge> | This means that knowing "a" uniquely determins "b" |
2025-04-06 19:16:22 +0200 | <haskellbridge> | <hellwolf> class A a b | a -> b |
2025-04-06 19:16:19 +0200 | <c_wraith> | the problem is that it never actually uses t in the definition of combineC |
2025-04-06 19:15:54 +0200 | <emojelly> | I know very little about the theory behind the system, I guess the class does not unify "t" across all its definitions somehow... |
2025-04-06 19:14:45 +0200 | <emojelly> | How can I do 1.? |
2025-04-06 19:14:41 +0200 | <emojelly> | Type applications seem at least a bit cleaner than "gratuitous" arguments... |
2025-04-06 19:11:01 +0200 | <haskellbridge> | ... long message truncated: https://kf8nh.com/_heisenbridge/media/kf8nh.com/JYSfMNZqjiXzhkfTeJfRrGsX/9kwQ5Tzz6so (4 lines) |
2025-04-06 19:11:01 +0200 | <haskellbridge> | <hellwolf> options: |
2025-04-06 19:10:26 +0200 | <emojelly> | Yeah that's possible... I don't quite remember if I had to disambiguate both. |
2025-04-06 19:10:03 +0200 | <emojelly> | Yeah. I've been wondering about using proxies... but then I think I have to pass a Proxy instead? |
2025-04-06 19:09:51 +0200 | <c_wraith> | But you still should only need to disambiguate t itself somehow, not m1 m2 a1 or a2 |
2025-04-06 19:09:33 +0200 | <emojelly> | It's actually a type family from MonadTransControl (which is a relatively common class), but it's the same if I define it myself of course. |
2025-04-06 19:09:16 +0200 | <c_wraith> | well that makes it a ton more complicated. |
2025-04-06 19:09:06 +0200 | <emojelly> | it is, yeah! |
2025-04-06 19:08:24 +0200 | <c_wraith> | unless StT is a type family? |
2025-04-06 19:07:30 +0200 | <c_wraith> | with that particular class definition, all that you normally should need to disambiguate is t |
2025-04-06 19:06:42 +0200 | <emojelly> | All the information about the (t m1 a1) and (t m2 a2) are containing in (StT t a1) (StT t a2) respectively, that's pretty much their point. |
2025-04-06 19:05:55 +0200 | <emojelly> | Is there a more elegant way to do that, than passing arguments which are not actually used for anything? |
2025-04-06 19:05:37 +0200 | tzh | (~tzh@c-76-115-131-146.hsd1.or.comcast.net) |
2025-04-06 19:05:36 +0200 | <emojelly> | Those first two arguments, of type (t m1 a1) and (t m2 a2), are only there to disambiguate the type. Otherwise, ghc complains that all the "St t"s are ambiguous. |
2025-04-06 19:04:48 +0200 | <emojelly> | combineC :: forall m1 m2 a1 a2. (t m1 a1) -> (t m2 a2) -> Maybe (StT t a1) -> Maybe (StT t a2) -> StT t (Maybe a1, Maybe a2) |
2025-04-06 19:04:46 +0200 | <emojelly> | ... |
2025-04-06 19:04:44 +0200 | <emojelly> | class MonadTransControl t => MonadTransCombine t where |
2025-04-06 19:04:42 +0200 | <emojelly> | So I have the following function in my type class: |
2025-04-06 19:04:04 +0200 | emojelly | (~eselber_p@user/endojelly) endojelly |
2025-04-06 19:03:32 +0200 | __monty__ | (~toonn@user/toonn) toonn |
2025-04-06 19:01:31 +0200 | ss4 | (~wootehfoo@user/wootehfoot) (Read error: Connection reset by peer) |
2025-04-06 19:01:13 +0200 | wootehfoot | (~wootehfoo@user/wootehfoot) (Read error: Connection reset by peer) |
2025-04-06 19:00:54 +0200 | ss4 | (~wootehfoo@user/wootehfoot) wootehfoot |
2025-04-06 18:53:22 +0200 | tromp | (~textual@2001:1c00:3487:1b00:c873:d422:44c2:cc0c) (Quit: My iMac has gone to sleep. ZZZzzz…) |
2025-04-06 18:43:49 +0200 | <ski> | er .. i suppose, not with `0'. same issue, though |
2025-04-06 18:42:57 +0200 | <ski> | but we want the neutral element of the given group to be identified with `-1', not with `1', of the group of integers |
2025-04-06 18:42:06 +0200 | <ski> | hmm .. no, that doesn't quite work. coproduct would identify the neutral elements of the two groups |
2025-04-06 18:39:39 +0200 | <ski> | (note, arbitrary groups, not abelian ones) |
2025-04-06 18:39:11 +0200 | <ski> | i suppose you could take coproduct of the given group, and the group of integers |