JordanMartinez
JordanMartinez
See #46 for context. Drop `Show` and replace it with `Debug` as defined here: https://github.com/hdgarrood/purescript-debugged For context: - https://harry.garrood.me/blog/down-with-show-part-1/ - https://harry.garrood.me/blog/down-with-show-part-2/ - https://harry.garrood.me/blog/down-with-show-part-3/
See Rust for example: - [PartialEq](https://doc.rust-lang.org/std/cmp/trait.PartialEq.html) - [PartialOrd](https://doc.rust-lang.org/std/cmp/trait.PartialOrd.html) ```purescript -- symmetric: a `eq` b == b `eq` a -- transitive: a `eq` b == b `eq` c == a `eq`...
**Description of the change** - Export `tails`; make it stack safe - Implement `inits` Note: the `inits` test currently fails with a "JavaScript heap out of memory" error because we're...
I came across [State in Haskell](https://www.microsoft.com/en-us/research/wp-content/uploads/2016/07/state-lasc.pdf) where I believe `ST` was first introduced. Perhaps we should link to that paper in the docs?
See https://github.com/purescript/purescript/pull/4235#discussion_r829263552 once that PR gets merged.
`spago` is being rewritten in PureScript so it can reuse the code provided by the upcoming Registry. I was wondering if this infrastructure should follow suit. More people might contribute...
The `Data.Validation.Semigroup` `V` does not have a `Bind` instance because it can lead to unexpected results despite it otherwise working fine. That makes sense, but when I _do_ want that...
This is one of my tasks this week from the PS Contrib working group.
Another task from the PS contrib working group.
In Intellij Idea, the TreeView displays their files like so: ``` some/package/name/ firstName/ text.java code.java secondName/ subPackage/ someClass.java writer.java ``` Currently, LiveDirsFX does not support this option to consolidate directories...