Skip to content
Snippets Groups Projects
  1. Jan 23, 2019
  2. Jan 11, 2019
  3. Nov 30, 2018
  4. Nov 28, 2018
  5. Jun 10, 2018
  6. Apr 27, 2018
  7. Apr 05, 2018
  8. Feb 23, 2018
  9. Feb 22, 2018
  10. Feb 19, 2018
  11. Feb 12, 2018
  12. Feb 08, 2018
  13. Feb 02, 2018
  14. Jan 10, 2018
  15. Dec 08, 2017
  16. Dec 05, 2017
  17. Dec 04, 2017
  18. Nov 29, 2017
  19. Nov 21, 2017
    • Robbert Krebbers's avatar
      Pattern matching notation for monadic binds. · dcd59f13
      Robbert Krebbers authored
      This gets rid of the old hack to have specific notations for pairs
      up to a fixed arity, and moreover allows to do fancy things like:
      
      ```
      Record test := Test { t1 : nat; t2 : nat }.
      
      Definition foo (x : option test) : option nat :=
        ''(Test a1 a2) ← x;
        Some a1.
      ```
      dcd59f13
  20. Nov 12, 2017
    • Robbert Krebbers's avatar
      Make `fmap` left associative. · 12e701ca
      Robbert Krebbers authored
      This follows the associativity in Haskell. So, something like
      
        f <$> g <$> h
      
      Is now parsed as:
      
        (f <$> g) <$> h
      
      Since the functor is a generalized form of function application, this also now
      also corresponds with the associativity of function application, which is also
      left associative.
      12e701ca
  21. Nov 09, 2017
  22. Nov 01, 2017
  23. Oct 31, 2017
  24. Oct 28, 2017
  25. Oct 27, 2017
  26. Oct 13, 2017
  27. Oct 10, 2017
  28. Oct 06, 2017
  29. Sep 21, 2017
Loading