Skip to content
#

type-theory

Here are 124 public repositories matching this topic...

tommythorn
tommythorn commented Feb 11, 2017

I was excited to see the introduction to modern Haskell as I find that it's very confusing to enter Haskell these days as many or most introductions doesn't actually match current practices (Text vs. String, cabal vs. plain GHC, etc). However, I was bewildered when the Cabal & Stack section didn't mention Stack. Is this merely waiting for someone to write it? At the very least, we should be

gallais
gallais commented Feb 29, 2020

I think it ought to be possible to speed up https://github.com/gallais/agdarsec quite a lot
by not converting a String (aka Haskell's Text) to a List Char but rather processing
the string immediately.

To be able to do that & have the parsers still run at compile time, I need:

  • Maybe as a builtin
  • uncons : Text -> Maybe (Char, Text) as a primitive
  • `length-uncons
Alizter
Alizter commented Mar 11, 2020

I think a good rule of thumb would be that if you can't imagine making practical use of file B without file A, then B should export A. For instance, Modality exports ReflectiveSubuniverse because so many of the theorems about modalities are actually theorems about reflective subuniverses. It's hard to imagine talking about colimits without needing to talk about diagrams too, so I agr

Improve this page

Add a description, image, and links to the type-theory topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the type-theory topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.