package rfc3986
import (
"github.com/reiver/go-rfc2234"
)
func IsAlpha(r rune) bool {
return rfc2234.IsAlpha(r)
}