Removed dead code.

This commit is contained in:
Søren Debois 2016-03-14 20:18:16 +01:00
parent ed12ecf8e8
commit bba58eed2c
3 changed files with 1 additions and 26 deletions

1
.gitignore vendored
View file

@ -2,3 +2,4 @@ elm-stuff
.*.sw? .*.sw?
elm.js elm.js
index.html index.html
docs.json

View file

@ -1,14 +0,0 @@
module Card
{-}
(
)-} where
type Shadow
= None
| Foo
{-}
card shadow attr elem =
div
(class "")
-}

View file

@ -1,12 +0,0 @@
module Material.Infix where
import Maybe
(|?>): Maybe a -> (a -> b) -> Maybe b
(|?>) x f = Maybe.map f x
(|??>) : Maybe a -> (a -> Maybe b) -> Maybe b
(|??>) = Maybe.andThen
(|?) : Maybe a -> a -> a
(|?) x y = Maybe.withDefault y x