Ian Hofmann-Hicks

Results 48 comments of Ian Hofmann-Hicks

And I think we may have to dispatch `concat` to one of the core files, string or array. We want to put an error in the case of something like:...

@flintinatux Sorry it took so long to get back to you sir. I was going back through my notes and it looks like we did this by design. It has...

@flintinatux Oh. I totes agree with that. The way I justified that before, is that it we a Nat Transform from `Promise` -> `Async` and `Promise` in the Category of...

So are you cool with this resolution or is there something more you think we should explore. Funny thing the two things that make a Promise, not a `Functor` is...

@flintinatux I think you hit the nail on the head with the `fromPromise` function. I think this may be where the issue lies. So no matter what, this behavior will...

@JustinHoyt So these type of functions have a really cool name called `cata-morphisms ` you can think of them as ways to fold out your result. Most Sum Types (Either,...

@JustinHoyt very nice. So a here are a couple of pointers to get you started. * We get the most out of these types when they are separate and are...

Oh a neat helper using the `crocks` `curry` (will only work with `crocks`) you can use is: ```js const lift2A2 = curry( compose(liftA2, liftA2) ) ```

Nice! As far as `constant` goes, that is the same things as `ramda`'s `always`. So it is a binary function that will return the first value, and throw away any...

> how the compose is not making nested Arrays Ohhhhh. I think I may know what is going on with your intuition on this `lift` madness, and why you had...