Abstract
Maps over characters in a string wrapped in an Opt.
opt('hello').mapStr(c => c.toUpperCase()) // Some('HELLO')opt('').mapStr(c => c.toUpperCase()) // Some('')none.mapStr(c => c.toUpperCase()) // None
mapStr
Maps over characters in a string wrapped in an Opt.