We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdad80f commit d627a54Copy full SHA for d627a54
benchmarks/haskell/Benchmarks/Pure.hs
@@ -280,9 +280,12 @@ benchmark kind ~Env{..} =
280
]
281
282
, bgroup "Builder"
283
- [ bench "mappend char" $ nf (TL.length . TB.toLazyText . mappendNChar 'a') 10000
284
- , bench "mappend 8 char" $ nf (TL.length . TB.toLazyText . mappend8Char) 'a'
285
- , bench "mappend text" $ nf (TL.length . TB.toLazyText . mappendNText short) 10000
+ [ bench ("mappend char+" ++ kind) $
+ nf (TL.length . TB.toLazyText . mappendNChar 'a') 10000
+ , bench ("mappend 8 char+" ++ kind) $
286
+ nf (TL.length . TB.toLazyText . mappend8Char) 'a'
287
+ , bench ("mappend text+" ++ kind) $
288
+ nf (TL.length . TB.toLazyText . mappendNText short) 10000
289
290
291
where
0 commit comments