This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Companies hiring Scala developers in the Bay Area. | |
| Created in response to a thread on scala-base. | |
| My favorites: | |
| - CloudPhysics | |
| - Wordnik | |
| Unbiased list: | |
| - 10Gen | |
| - Audax Health |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Inspired by the writings of Edward Kmett, Edward Yang and Gabriel Gonzalez | |
| -- concerning free monads and the codensity transformation. | |
| -- | |
| -- http://comonad.com/reader/2011/free-monads-for-less/ | |
| -- http://blog.ezyang.com/2012/01/problem-set-the-codensity-transformation/ | |
| -- http://www.haskellforall.com/2012/06/you-could-have-invented-free-monads.html | |
| -- | |
| {-# LANGUAGE RankNTypes #-} | |
| {-# LANGUAGE MultiParamTypeClasses #-} | |
| {-# LANGUAGE FlexibleInstances #-} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Prime where | |
| open import Coinduction | |
| open import Data.Empty | |
| open import Data.Nat | |
| open import Data.Nat.Properties | |
| open import Data.Nat.Divisibility | |
| open import Data.Fin hiding (pred; _+_; _<_; _≤_; compare) | |
| open import Data.Fin.Props hiding (_≟_) |
NewerOlder