tlienart / FranklinParser.jl

Franklin's Markdown processor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Use concrete types, avoid type unions

tlienart opened this issue · comments

Out of the SnoopCompile gem, one note is to try to use SubString{String} explicitly and String (both of which are concrete types) and avoid Union{SubString,String} which isn't (and is not even a union of concrete types).