summaryrefslogtreecommitdiffhomepage
path: root/doc/protocol/comment_3_6338e14886f146eb5d2f9c9316e1f7de._comment
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2017-05-10 08:58:58 -0700
committerSean Whitton <spwhitton@spwhitton.name>2017-05-10 08:58:58 -0700
commita526f69d0e2908bdae2ff17a63641914c86547c3 (patch)
treea8306453ea5ecae78cc1528e95437dd307ab1cf7 /doc/protocol/comment_3_6338e14886f146eb5d2f9c9316e1f7de._comment
parentc9d198ffa9d2719b83c07f5157e735dad801bb4e (diff)
parentbb15464e4218ff3209b6312e0795f60689613a2c (diff)
downloaddebug-me-a526f69d0e2908bdae2ff17a63641914c86547c3.tar.gz
Merge tag '1.20170509'
tagging package debug-me version 1.20170509
Diffstat (limited to 'doc/protocol/comment_3_6338e14886f146eb5d2f9c9316e1f7de._comment')
-rw-r--r--doc/protocol/comment_3_6338e14886f146eb5d2f9c9316e1f7de._comment22
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/protocol/comment_3_6338e14886f146eb5d2f9c9316e1f7de._comment b/doc/protocol/comment_3_6338e14886f146eb5d2f9c9316e1f7de._comment
new file mode 100644
index 0000000..657a20a
--- /dev/null
+++ b/doc/protocol/comment_3_6338e14886f146eb5d2f9c9316e1f7de._comment
@@ -0,0 +1,22 @@
+[[!comment format=mdwn
+ username="https://www.joachim-breitner.de/"
+ nickname="nomeata"
+ avatar="http://cdn.libravatar.org/avatar/a2112893817513537c6a2c228c04c138a2f68bba57121ab7f267de58fc5171d7"
+ subject="comment 3"
+ date="2017-05-07T03:20:38Z"
+ content="""
+Still not good, I think, as the instance `Hashable Hash` has `hash = id`, so
+
+ hash Nothing
+ = hash ()
+ = id (hash ())
+ = hash (Just (hash ())
+
+ and we have a collision at type `Maybe Hash`.
+
+What would work is to do the same that `Hashable []` does, i.e. has the hash again:
+
+ hash (Just v) = hash (val (hashValue v))
+ hash Nothing = hash (mempty :: B.ByteString)
+
+"""]]