Converts the input string to uppercase.
str.upcase: String -> String
This lens converts its input to the same string but in upper case.
Applying the following lens:
---
array.map:
lenses:
- str.upcase
to the following input:
---
- foo
will return:
---
- FOO