func IsBlankFast(s string) bool { n := len(s) for i := 0; i < n; i++ { c := s[i] if c == '\r' || c == '\n' || c == ' ' { continue } return false } return true }