-
There are a few issues with the current situation:
+ Decoding/encoding from UTF-8 is a really common use case, but requires a separate import (`Data.Text.Encoding`)
+ The best name (`decodeUtf8`) …
-
@MatthijsBlom suggested the following concept graph, which is a good starting point for building up to a basic understanding of proper pattern matching in Haskell.
```
|
Simple P…
-
Hello.
Quite often while working with `ImmutableJS` data structures and other immutable libraries people forget that values are immutable:
They can accidentally write:
```
obj.set('name', 'newName'…
-
Hi,
I'm a bit surprised that various I/O (in the filesystem sense, not Haskell `IO`) functions are imported as `unsafe`. While they won't call back to Haskell, depeding on which filesystem they talk …
-
Thanks for your work on this great package!
I encountered the following problem when using the ArrayBuffer result type in the performRequestsAsync call.
If I try to query a non existing host/por…
-
Olá, vi que você comentou no grupo do Facebook Node.js Brasil pedindo por sugestões de temas para estudar. Achei que seria interessante abrir uma issue aqui com uma sugestão.
Acho que seria intere…
-
-
I'm hitting this fail in BitBlast.hs when running `write_aig`. In my run, x and y are 0 and 1.
```
muxInt _ x y = if x == y then return x else fail $ "muxBVal: VInt " ++ show (x, y)
```
I can …
-
### Steps to reproduce
Outside of a stack project:
```
time stack exec echo 'hello'
Run from outside a project, using implicit global project config
Using resolver: lts-7.2 from implicit global…
-
Essentially, this `Lazy` library isn't just a `LazyList` library but both a `LazyList` library and a (non-lazy) `LinkedList` library and as both the `LazyList` and `LinkedList` types are subtypes of t…