Neil Mitchell

Results 1199 comments of Neil Mitchell

So I think what we want is: ``` splitDirectoryStart :: FilePath -> (FilePath, FilePath) ``` Which turns `foo/bar/baz` into (`foo`, `bar/baz`). Then everything else, probably a take, drop, and strip...

For other additions to the library, there are the split/drop/take functions all in the library - I see no reason to not do that here too. The main question I...

In #77 I offered to change maintainership of this library. Given this decision is the big one outstanding, I'll wait for a resolution on that matter before figuring out this...

Thanks for the patch. I reviewed it by eye and it looks great. Can we get a test in https://github.com/ndmitchell/hexml/blob/master/src/Main.hs as well? It's pretty subtle doing this coding, and a...

Thanks! I released Hexml 0.3.5 with this change.

I'm not going to say its impossible, but I haven't been able to figure it out, and I did give it a shot. Because dynamic dependencies are restricted to being...

@martindemello is working on this.

`id` shows up a lot in laws, but partly because of this I find it's actually pretty rare to use `id` in code - generally it can be removed by...

All the other identities are identity with respect to some semantics, whereas the function identity really is identity for everything.

Why not export identity :: a -> a, and leave id from Category not in scope by default, and now not clashing.