mirror of
https://github.com/thma/WhyHaskellMatters.git
synced 2024-11-25 18:56:48 +03:00
Show and Read
This commit is contained in:
parent
cb4ef73e29
commit
8123a8c9df
46
README.md
46
README.md
@ -1206,12 +1206,10 @@ an expression `read "some string content"` will return. Thus expected type must
|
|||||||
Either by an implicit declaration given by some function type signature, or as in the example above,
|
Either by an implicit declaration given by some function type signature, or as in the example above,
|
||||||
by an explicit declaration.
|
by an explicit declaration.
|
||||||
|
|
||||||
### Homoiconicity
|
|
||||||
|
|
||||||
Together `show` and `read` provide a convenient way to serialize (marshal) and deserialize (unmarshal) Haskell
|
Together `show` and `read` provide a convenient way to serialize (marshal) and deserialize (unmarshal) Haskell
|
||||||
data structures.
|
data structures.
|
||||||
This mechanism does not provide any optimized binary representation but it is still good enough for
|
This mechanism does not provide any optimized binary representation, but it is still good enough for
|
||||||
many practical purposes. And the format is more compact than JSON.
|
many practical purposes, the format is more compact than JSON, and it does not require a parser library.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -1219,29 +1217,23 @@ many practical purposes. And the format is more compact than JSON.
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- Read, Show
|
|
||||||
|
|
||||||
- deriving
|
|
||||||
- complex interfaces
|
|
||||||
- interpreter style
|
|
||||||
|
|
||||||
|
|
||||||
---
|
---
|
||||||
---
|
---
|
||||||
|
|
||||||
This is my scrap book (don't look at it)
|
This is my scrap book (don't look at it)
|
||||||
|
|
||||||
|
|
||||||
|
type classes
|
||||||
|
- complex interfaces
|
||||||
|
- interpreter style
|
||||||
|
|
||||||
- Seiteneffekte müssen in Funktions signaturen explizit gemacht werden.
|
- Seiteneffekte müssen in Funktions signaturen explizit gemacht werden.
|
||||||
D.H wenn keine Seiteneffekt angegeben ist, verhindert der Compiler, dass welche auftreten !
|
D.H wenn keine Seiteneffekt angegeben ist, verhindert der Compiler, dass welche auftreten !
|
||||||
Damit lässt sich Seiteneffektfreie Programmierung realisieren ("Purity")
|
Damit lässt sich Seiteneffektfreie Programmierung realisieren ("Purity")
|
||||||
|
|
||||||
- Static and Strong typing (Es gibt kein Casting)
|
- Static and Strong typing (Es gibt kein Casting)
|
||||||
|
|
||||||
- Type Inferenz. Der Compiler kann die Typ-Signaturen von Funktionen selbst ermitteln. (Eine explizite Signatur ist aber möglich und oft auch sehr hilfreich für Doku und um Klarheit über Code zu gewinnen.)
|
- Type Inferenz. Der Compiler kann die Typ-Signaturen von Funktionen selbst ermitteln. (Eine explizite Signatur ist aber möglich und oft auch sehr hilfreich für Doku und um Klarheit über Code zu gewinnen.)
|
||||||
|
|
||||||
- Polymorphie (Z.B für "operator overloading", Generische Container Datentypen, etc. auf Basis von "TypKlassen")
|
|
||||||
|
|
||||||
- Eleganz: Viele Algorithmen lassen sich sehr kompakt und nah an der Problemdomäne formulieren.
|
- Eleganz: Viele Algorithmen lassen sich sehr kompakt und nah an der Problemdomäne formulieren.
|
||||||
|
|
||||||
- Data Encapsulation durch Module
|
- Data Encapsulation durch Module
|
||||||
@ -1271,19 +1263,12 @@ Damit lässt sich Seiteneffektfreie Programmierung realisieren ("Purity")
|
|||||||
|
|
||||||
## toc for code chapters (still in german)
|
## toc for code chapters (still in german)
|
||||||
|
|
||||||
- Werte
|
- TypKlassen
|
||||||
- Funktionen
|
- Automatic deriving
|
||||||
- Listen
|
(Functor mit Baum Beispiel)
|
||||||
- Lazyness
|
Baum mit Knoten Status dann mit map nach Severity
|
||||||
- List comprehension
|
|
||||||
- Eigene Kontrollstrukturen
|
|
||||||
|
|
||||||
- Algebraische Datentypen
|
|
||||||
- Summentypen : Ampelstatus
|
|
||||||
- Produkttypen (int, int)
|
|
||||||
Beispiel: Baum mit Knoten (int, Ampelstatus) dann mit map ein Ampelstatus
|
|
||||||
- deriving (Show, Read) für einfache Serialisierung
|
|
||||||
- Homoiconicity (Kind of)
|
|
||||||
- Maybe Datentyp
|
- Maybe Datentyp
|
||||||
- totale Funktionen
|
- totale Funktionen
|
||||||
- Verkettung von Maybe operationen
|
- Verkettung von Maybe operationen
|
||||||
@ -1292,12 +1277,7 @@ Damit lässt sich Seiteneffektfreie Programmierung realisieren ("Purity")
|
|||||||
|
|
||||||
- explizite Seiten Effekte -> IO Monade
|
- explizite Seiten Effekte -> IO Monade
|
||||||
|
|
||||||
- TypKlassen
|
- static typing
|
||||||
- Polymorphismus
|
|
||||||
z.B. Num a, Eq a
|
|
||||||
- Show, Read => Homoiconicity bei Serialisierung
|
|
||||||
- Automatic deriving
|
|
||||||
(Functor mit Baum Beispiel)
|
|
||||||
|
|
||||||
- Testbarkeit
|
- Testbarkeit
|
||||||
- TDD, higher order functions assembly, Typklassen dispatch (https://jproyo.github.io/posts/2019-03-17-tagless-final-haskell.html)
|
- TDD, higher order functions assembly, Typklassen dispatch (https://jproyo.github.io/posts/2019-03-17-tagless-final-haskell.html)
|
||||||
|
Loading…
Reference in New Issue
Block a user