Get a first item of an array or a first character of a string wrapped in Opt.
opt([1, 2, 3]).headIn() // Some(1)opt([]).headIn() // Noneopt(null).headIn() // Noneopt('Palico').headIn() // Some('P')
head
Get a first item of an array or a first character of a string wrapped in Opt.