Add template for all about strings

This commit is contained in:
Michael Snoyman 2015-03-09 10:05:19 +02:00
parent 2631d34dc7
commit 0d09c125df
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,16 @@
---
title: All about strings
author: Michael Snoyman <michael@fpcomplete.com>
description: Assorted information on string-like types, data models, laziness, etc
first-written: 2015-03-09
last-updated: 2015-03-09
last-reviewed: 2015-03-09
---
* Lazy vs strict
* String, Text, and ByteString
* Internal representation: pinned vs unpinned memory
* Implications of lazy I/O
* Character encoding, conversions
* Representations (base16-bytestring/base64-bytestring)
* Example: hashing

View file

@ -77,6 +77,7 @@ when they're useful, and possible pitfalls.
* Random number generation (mwc-random)
* Possibly others from: https://www.fpcomplete.com/school/using-fphc/recommended-libraries
* Regular expressions with regex-applicative
* [All about strings](../content/all-about-strings.md)
## System programming