Idris2Doc : Data.String.Lens

Data.String.Lens

(source)

Reexports

importpublic Control.Lens

Definitions

unpacked : Iso'String (ListChar)
  An isomorphism between a string and a list of characters.

```idris
unpacked = from packed
```

Totality: total
Visibility: public export
packed : Iso' (ListChar) String
  An isomorphism between a list of characters and a string.

```idris
packed = from unpacked
```

Totality: total
Visibility: public export
reversed : Iso'StringString
  An isomorphism between a string and its reverse.

Totality: total
Visibility: public export